Re: wicket1.3 on websphere6.0.11.

2007-12-11 Thread narup
it again worked fine, so moral of the story is websphere doesn't handle filter properly Thanks narup wrote: > > Hello All, > > I recently did an upgrade from wicket1.2.6 to wicket1.3 and also > successfully deployed in a websphere, but my cancel and apply buttons on > th

wicket1.3 on websphere6.0.11.

2007-12-11 Thread narup
Hello All, I recently did an upgrade from wicket1.2.6 to wicket1.3 and also successfully deployed in a websphere, but my cancel and apply buttons on the page and modal window are not working everywhere. I don't get any error in the log file also. Interesting thing is it works everything fine in

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 org.apache.wicket.protocol.http.WicketFilter instead of wicket servlet then have to do change Setting com.ibm.ws.webcontainer.invokefilterscompatibility pro

Re: annoying alert message while closing modal window with wizard

2007-12-05 Thread narup
sure you have 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 >

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. > > &g

Re: annoying alert message while closing modal window with wizard

2007-12-04 Thread narup
se the window. >> Alternatively, you can put this script to your page (only for 1.3): >> >> >> Wicket.Window.unloadConfirmation = false; >> >> >> -Matej >> >> On Dec 3, 2007 7:48 PM, narup <[EMAIL PROTECTED]> wrote: >> >

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 target.appendJa

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: http://www.nabble.com/org.apache.wicket.WicketRuntimeException%3A-no-set-method-defined-for-value%3Aon-object%3A-tf4924381.ht

Re: having problem using wicket wizard in a modal window

2007-11-29 Thread narup
d stay 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: >> >>

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 for

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
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

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]>

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