Re: NullPointer at WizardModel in WizardStep using 1.5.3

2012-07-12 Thread bamse
Thanks for your reply. Your hint regarding the reset-method made me look in the sourcecode for WizardModel, where I found this code, new in 1.5: for(IWizardstep step : steps){ step.init(this);} Putting this into my own implematation did the trick. -- View this message in context: http://apache-w

Re: jboss ignoring html request

2012-07-12 Thread wicket user
Thanks for the quick reply , yes i checked FilterChain.doFilter(req,res), and i have verified also the url pattern in web.xml MyFilter com.xyz.util.MyFilter MyFilter *.html -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/jboss-i

Re: jboss ignoring html request

2012-07-12 Thread Francois Meillet
-check the call of chain.doFilter(request, wrapper); at the end of the doFilter method of your previous filter -verify the patern you use in the filter configuration of the web.xml François Le 13 juil. 2012 à 06:53, wicket user a écrit : > Hi, > > We are using Jboss app server, > we wrote a

jboss ignoring html request

2012-07-12 Thread wicket user
Hi, We are using Jboss app server, we wrote a filter each wicket html's should pass through this filter(which is a j2ee servlet filter) and we added this filter/filter mapping in the web.xml for *.html ---url-pattern . But still this Request is not going through this filter. Wondering why ? is s

ajax submit button that redirects to login before processing submit

2012-07-12 Thread Jeff Schneller
I am trying to put a form on a page that can only be submitted if the user is logged in. If the user is not logged in, I would like them to be able to submit the form but be redirected to the login page. Then after successful login, the original form submission is processed. I am using 1.5.3

Custom XHTML tag

2012-07-12 Thread Jered Myers
I am using Wicket 1.4.18. I need to add custom tool tips to many fields in my application. The spec requires a help image with the tool tip (like the question mark JIRA uses) at the end of my field label that displays the tool tip on mouseover. The tool tip messages must be localized. The go

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread Martijn Dashorst
s/r/s/ google "Apache Isis Java" instead. Martijn On Thu, Jul 12, 2012 at 6:24 PM, venkatnsm wrote: > please send me the link of Apache Iris project , > > i want to convert pojo fields to UI . > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Generate-html-pa

Re: NullPointer at WizardModel in WizardStep using 1.5.3

2012-07-12 Thread Sven Meier
Have you overriden Wizard#reset()? Sven On 07/12/2012 05:18 PM, Sven Meier wrote: In 1.5.x the init call was moved from the wizard to the wizard model. I don't have the source available right now, but perhaps you have overriden a method in WizardModel without calling the super implementation.

Confirmation on AjaxLink

2012-07-12 Thread ianpg
I am trying to add a confirmation to the ajaxlink. If the confirmation is not received then the link action should stop and the ajax call not be made. I have found code in a posting by Igor using the onComponentTag and also code using the AjaxCallDecorator. I can not get the onComponentTag to wor

Re: Anybody is having problems with Wicket and Facebook Like button?

2012-07-12 Thread Alec Swan
Is there a way to have a GET to /lrm/ms/oid/74989 to be redirected to /lrm/ms/oid/74989.0;jsessionid=xxx instead of /lrm/ms/oid/../../ms/oid/74989.0;jsessionid=xxx? Where is this ../../ coming from? I am on Wicket 1.4.17 and /lrm/ms is mounted to a Wicket page. Thanks On Thu, Jul 12, 2012 at 8:1

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread venkatnsm
please send me the link of Apache Iris project , i want to convert pojo fields to UI . -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Generate-html-page-from-java-POJO-in-Wickets-tp4650360p4650482.html Sent from the Users forum mailing list archive at Nabble.com. -

Form Submit Button not recognizing latest Ajax changes in included Panel

2012-07-12 Thread eugenebalt
We have a Form which has a regular Form Submit button (a "Button"). Inside the Form there is a Panel with various actions happening via Ajax. The Panel has 4 dropdowns where each selection triggers create/delete of other dropdowns. These Ajax actions are all outsourced to the Panel. Our problem i

Re: wicket 1.4 to 1.5 migration - page id in urls issue - how to remove for certain pages

2012-07-12 Thread Thomas Heigl
Hi Sam, I wrote a custom MountedMapper for the project I'm currently working on. All it does, is not rendering the page version info for pages. For all other components it is still turned on. IMHO this mimics the pre-1.5 behavior. We've been using it in production for quite a while now and it work

Re: Radiobutton example with Ajax needed

2012-07-12 Thread lang
It helped me! Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Radiobutton-example-with-Ajax-needed-tp4650454p4650479.html Sent from the Users forum mailing list archive at Nabble.com. - To unsu

Re: NullPointer at WizardModel in WizardStep using 1.5.3

2012-07-12 Thread Sven Meier
In 1.5.x the init call was moved from the wizard to the wizard model. I don't have the source available right now, but perhaps you have overriden a method in WizardModel without calling the super implementation. Sven bamse schrieb: >I am using the Wicket Wizard in an application where users g

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread Martin Grigorov
as we said in the first mails in this thread - this project is not maintained anymore (last revision is 3+ years ago) Check Apache Iris project On Thu, Jul 12, 2012 at 5:48 PM, venkatnsm wrote: > hi Martin, > > > I can build core project, but am unable to build jpa-utils project. see > error bel

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread venkatnsm
hi Martin, I can build core project, but am unable to build jpa-utils project. see error below. E:\Venkat\wicket-rad\jpa-utils>mvn clean install [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for com.recursivity.jpa:jpa-utils

Re: wicket (1.5) push with cometd or atmosphere?

2012-07-12 Thread Emond Papegaaij
As the author of wicket-atmosphere, I would recommend wicket-atmosphere :) Wicket 6.0 is close to a final release and atmosphere does not depend on the servlet container. It will use native support, if available, but falls back to other solutions if the container does not support websocket. Natu

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread venkatnsm
i have directory structure. E:\Venkat\wicket-rad \wicket-rad-core \jpa-utils \wicket-jpa i tried in same way, still i am getting same prob. -- View this message in context: http://apache-wicket.1842946.n4

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread Martin Grigorov
is there something like : E:\Venkat\wicket-rad\wicket-rad-parent ? if YES, then cd into it and run: mvn install -N then cd E:\Venkat\wicket-rad\ mvn install On Thu, Jul 12, 2012 at 5:19 PM, venkatnsm wrote: > E:\Venkat\wicket-rad>cd.. > > > E:\Venkat> mvn clean install > > > is this correct way

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread venkatnsm
E:\Venkat\wicket-rad>cd.. E:\Venkat> mvn clean install is this correct way ? my project is wicket-rad, see error [INFO] Scanning for projects... [INFO] [INFO] BUILD FAILURE [INFO] -

Re: Anybody is having problems with Wicket and Facebook Like button?

2012-07-12 Thread Alec Swan
I used Apache httpd.conf to rewrite our URLs to exclude jsessionids, but this did not fix the problem with Facebook Like button. Now I am wondering if the problem is related to Wicket inserting ../../ in the middle of the URL when Tomcat redirects sessionless user to the URL with jsessionid as in t

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread Martin Grigorov
Go one directory up (cd..) and run the same command On Thu, Jul 12, 2012 at 5:01 PM, venkatnsm wrote: > can you tell me the what is problem, when type command mvn clean install > > > E:\Venkat\wicket-rad>mvn clean install > [INFO] Scanning for projects... > [ERROR] The build could not read 1 proj

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread venkatnsm
can you tell me the what is problem, when type command mvn clean install E:\Venkat\wicket-rad>mvn clean install [INFO] Scanning for projects... [ERROR] The build could not read 1 project -> [Help 1] [ERROR] [ERROR] The project org.wicketrad:wicket-rad-core:0.8 (E:\Venkat\wicket-rad\wicket-rad-c

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread venkatnsm
I am getting following error, checked out code & given mvn clean install coomand. Please let me know the issue E:\Venkat\wicket-rad>mvn clean install [INFO] Scanning for projects... [ERROR] The build could not read 1 project -> [Help 1] [ERROR] [ERROR] The project org.wicketrad:wicket-rad-core:

Re: Confirmation on AjaxLink

2012-07-12 Thread Decebal Suiu
See http://apache-wicket.1842946.n4.nabble.com/wicket-1-5-confirmation-ajaxbutton-tp4650460p4650462.html, works on wicket 1.5 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Confirmation-on-AjaxLink-tp4650466p4650467.html Sent from the Users forum mailing list archive

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread Decebal Suiu
https://sites.google.com/site/wicketrad/downloads -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Generate-html-page-from-java-POJO-in-Wickets-tp4650360p4650464.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread Decebal Suiu
https://sites.google.com/site/wicketrad/getting-the-source-code -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Generate-html-page-from-java-POJO-in-Wickets-tp4650360p4650463.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: wicket 1.5 confirmation ajaxbutton

2012-07-12 Thread Decebal Suiu
add(new AjaxLink("delete") { @Override public void onClick(AjaxRequestTarget target) { } @Override protected IAjaxCallDecorator getAjaxCa

Re: wicket 1.5 confirmation ajaxbutton

2012-07-12 Thread Andrea Del Bene
Please try to reattach the code. I can't read it neither in the mail nor on line. I used confirmation for onclick of ajax button in 1.4 it worked when I try the same with 1.5 it does not work. here is the code -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-

wicket 1.5 confirmation ajaxbutton

2012-07-12 Thread fachhoch
I used confirmation for onclick of ajax button in 1.4 it worked when I try the same with 1.5 it does not work. here is the code -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-1-5-confirmation-ajaxbutton-tp4650460.html Sent from the Users forum mailing list ar

Re: Generate html page from java POJO in Wickets

2012-07-12 Thread venkatnsm
I am unable to set up wicketrad application in my local system. Getting mavan dependencies problem, I did as follows. Step 1: downloaded wicket-rad-0.6-src.tar from above link. Step 2: Imported wicket-rad-core as maven project. Step 3: When i did update maven dependencies, getting error at

wicket (1.5) push with cometd or atmosphere?

2012-07-12 Thread Decebal Suiu
Hi I want to use a push technology (now I use comet-timer from wicketstuff) for some notifications in my wicket (1.5) application and I have to chose between cometd (wicketstuff) or atmosphere. I like wicket-atmosphere and wicket-native-socket from wicket-experimental but these require wicket 6.

Re: Thanks

2012-07-12 Thread Bert
This is great news. We are using m2 right now for a new application and it would be great to have an official released wicket once we go into production (end of august).. Thanks for all the work (and for the blog posts) Bert On Thu, Jul 12, 2012 at 10:44 AM, Martin Grigorov wrote: > Welcome! :-

NullPointer at WizardModel in WizardStep using 1.5.3

2012-07-12 Thread bamse
I am using the Wicket Wizard in an application where users go from page to page (step to step). This has been working fine in 1.4.18, but when I'm going to 1.5.3, the wizard fails to go from step to step. I get a NullPointerError in the WizardStep, and the object that is null is the WizardModel. I

Re: Radiobutton example with Ajax needed

2012-07-12 Thread Martin Grigorov
Hi, See the source code of http://www.wicket-library.com/wicket-examples-6.0.x/compref/wicket/bookmarkable/org.apache.wicket.examples.compref.RadioChoicePage You need RadioChoice with AjaxFormChoiceComponentUpdatingBehavior On Thu, Jul 12, 2012 at 1:32 PM, lang wrote: > I desperatly need a ajax

Radiobutton example with Ajax needed

2012-07-12 Thread lang
I desperatly need a ajax radio button. I tried some example like the one from http://reachmnadeem.wordpress.com/2011/08/15/wicket-ajax-radio/ but nothing is working like I want it to do. My radiobuttons must have an initial value and i want to know how to read that value (the display value has ano

Re: Thanks

2012-07-12 Thread Martin Grigorov
Welcome! :-) We plan to release one more beta/rc today or tomorrow. 6.0.0.final should be released as late as August 1. On Thu, Jul 12, 2012 at 11:37 AM, Decebal Suiu wrote: > Thanks for the articles about wicket 6 on http://wicketinaction.com/ > > Decebal > > -- > View this message in context:

Re: Thanks

2012-07-12 Thread Josh Kamau
Am reading them too Thanks guys. On Thu, Jul 12, 2012 at 11:37 AM, Decebal Suiu wrote: > Thanks for the articles about wicket 6 on http://wicketinaction.com/ > > Decebal > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Thanks-tp4650450.html > Sent from the

Thanks

2012-07-12 Thread Decebal Suiu
Thanks for the articles about wicket 6 on http://wicketinaction.com/ Decebal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Thanks-tp4650450.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: remove /wicket in front of url Wicket 1.5

2012-07-12 Thread Martin Grigorov
On Wed, Jul 11, 2012 at 8:51 PM, samzilverberg wrote: > I tried all kind of different values in my TestMapper : 1, 1000, > Integer.MAX_VALUE, -1000. > But none of them made any change. > I even put a break point in the MountMapper getCompatibilityScore method to I know the names are close and con

Re: wicket 1.4 to 1.5 migration - page id in urls issue - how to remove for certain pages

2012-07-12 Thread Sam Zilverberg
Thank you very much Jeremy! It was a good read through, very informative! I already browsed through Ivan's post but deemed it unrelevant to my problem on the first read. After reading the second post, then reading Ivan's post again, I now understand the page versioning system a lot better :) Sadly