Re: Server cannot find /app url after migration to 1.3 filter

2007-12-11 Thread narup
Well i also had a similar problem,actually websphere doesn't handle servlet filters properly. So upgrading wicket to 1.3 and if you are using filter-classorg.apache.wicket.protocol.http.WicketFilter/filter-class instead of wicket servlet then have to do change Setting

Re: annoying alert message while closing modal window with wizard

2007-12-05 Thread narup
to follow Matej's advice and implement ajax button to close it properly. On 04/12/2007, narup [EMAIL PROTECTED] wrote: Oh i take back my words :( the window gets closed but due to some AJAX error, so clicking finish button doesn't do the business operation , that it should do. It just closes

Re: annoying alert message while closing modal window with wizard

2007-12-04 Thread narup
Oh i take back my words :( the window gets closed but due to some AJAX error, so clicking finish button doesn't do the business operation , that it should do. It just closes the modal window with wizard. narup wrote: yes it worked for me.. thanks Matej. wicket user wrote: I tried

annoying alert message while closing modal window with wizard

2007-12-03 Thread narup
Hello All, I am using a custom wizard in a modal window, so i have my own custom button bar such as next, previous, finish and cancel. so when i click cancel or finish. i get this alert message. http://www.nabble.com/file/p14136120/alert.jpeg if i append the javascript like this

org.apache.wicket.WicketRuntimeException: no set method defined for value: [] on object:

2007-11-30 Thread narup
Hello All, Can anyone tell me why this error comes up, it was not there in wicket1.2.6. i see this after i did an upgrade. thanks -- View this message in context:

Re: having problem using wicket wizard in a modal window

2007-11-29 Thread narup
on the same page (do some panel replacement) you won't get that message. Alternatively i do believe there is a setting to turn that message off, somewhere. Maurice On Nov 29, 2007 12:51 AM, narup [EMAIL PROTECTED] wrote: Hello All, i am trying to use a wizard in modal window, but when i

having problem using wicket wizard in a modal window

2007-11-28 Thread narup
Hello All, i am trying to use a wizard in modal window, but when i click next or cancel button i get one warning message like this http://www.nabble.com/file/p14016058/untitled.jpeg each of the wizard page i have different form, not sure if it's the cause since Wizard already has a default

focus form first field with wicket, without using javascript

2007-11-21 Thread narup
hello All, i wonder if there is a better way to set the first field or element of the form focus when the page loads right now i am using target.appendJavascript(document.forms[' + component.getMarkupId() + '].elements[1].focus()); but i would love to see if wicket has any thing thanks --

Re: convertToString in custom Converter is not called

2007-11-19 Thread narup
Hello All, I am also having a problem with custom converter, convertToString method is never called. Thanks igor.vaynberg wrote: afik ddcs dont use converters because they use a choice renderer. see ddc.setchoicerenderer(); -igor On 8/13/07, Benjamin Ernst [EMAIL PROTECTED] wrote:

Re: convertToString in custom Converter is not called

2007-11-19 Thread narup
UserToStringConverter()); } } and also in UserToStringConverter class i have overriden convertToString method of AbstractConverter but it uses the convertToString from AbstractConverter class only. narup wrote: Hello All, I am also having a problem with custom converter

Re: Feedback messages and setResponsePage

2007-11-16 Thread narup
hello i am upgrading from wicket 1.2.6 to 1.3 rc1, and feedback messaging is not showing up with setResponse page. i am doing Page userPage = getUserPage(); //1.2.6 version code which was fine // userPage.getFeedbackMessage().info(userPage, getUser().getDescription() + Saved); //now i changed