history.go(-1) in wickets?

2009-09-10 Thread Jade
Hi people, I want to have a hyperlink or button on click of which does a history.go(-1) similar to javascript.(browser back button is not be used in our application) with page parameters retained. I did see couple of posts on this, like the isVersioned of the page is to be set to true and do so

Modal window closed button call back does not work?

2009-08-24 Thread Jade
Hi, I have a modal window in a panel. And, the modal window just displays a label. The modal window "x" was not closing the modal window, hence I wrote a CloseButtonCallback, which uses the close(..) method of the modal window. Even then, the modal window does not close. The behavior is not c

Re: Modal window shows raw HTML content

2009-08-20 Thread Jade
olean value)? > > > Jade-9 wrote: > > > > Hi, > > > > I am trying to add a HTML content into the modal window as string(within > > a > > label component). > > > > And, its getting added as raw HTML content. Is it usually that way or am &g

Modal window shows raw HTML content

2009-08-20 Thread Jade
Hi, I am trying to add a HTML content into the modal window as string(within a label component). And, its getting added as raw HTML content. Is it usually that way or am I doing something wrong? Please clarify. Thanks, J

Very basic question on AjaxLink

2009-08-13 Thread Jade
Hi all, I have a panel which has a AjaxLink. And, I have another panel, which is empty it just has a text. Both these panels are in a page. One on the left hand side and other on the right hand side. The panel in the left hand side is the one that has the AjaxLink. OnClick of the AjaxLink, I

Re: Wicket-like JavaScript Components

2009-06-15 Thread Jade
Hi, Jquery is one more good choice. But, I am sure it does not work in a similar way wicket does. You could always wrap around stuff to make it work with a model, but you may have to re-invent the wheel again :-s /Jade On Mon, Jun 15, 2009 at 11:00 PM, Marvan Spagnolo wrote: > Not wanting

Re: [OFF TOPIC] Java desktop applications

2009-06-11 Thread Jade
Yes and be aware that netbeans adds its own library files or jar files for the UI layouts. I had problems with it because we had to maintain those jars in the local maven repository which not all of them liked apparently :-s On Fri, Jun 12, 2009 at 10:23 AM, Jon Laidler wrote: > > Netbeans v6.5 W

Re: [OFF TOPIC] Java desktop applications

2009-06-11 Thread Jade
Java FX may be one, I am not sure of the look and feel or how better it is from swing though. As far as RIA(Rich Internet Applications) you could go for Adobe Flex, GWT. I am sure Flex can be used for standalone applications, I am not sure about GWT - but worth a look if its possible. On Fri, Jun

Re: AjaxLink and Form Validation

2009-06-10 Thread Jade
thin a > few hours. > > Regards, > Erik. > > > > Jade wrote: > >> Hi Erik, >> >> I am using version 1.3.4. And I guess migration it to version 1.4 would >> be >> bit tough. >> >> Anyways, that would have to be done if there is no other w

Re: AjaxLink and Form Validation

2009-06-10 Thread Jade
Hi Erik, I am using version 1.3.4. And I guess migration it to version 1.4 would be bit tough. Anyways, that would have to be done if there is no other way around it. Btw, any work around to over come this? Please suggest. Thanks all for your time in educating me. Regards, Jade On Thu, Jun

Re: AjaxLink and Form Validation

2009-06-10 Thread Jade
Guys, I am still struggling with the same :-( please advise. Tia, J On Wed, Jun 10, 2009 at 8:27 AM, Jade wrote: > And, I also tried changing the AjaxButton to AjaxSubmitLink in the java > code and with the same (as in for a submit button) in the > HTML page. > I am still hav

Re: AjaxLink and Form Validation

2009-06-09 Thread Jade
one of the AjaxSubmitLinks in the form :-( On Tue, Jun 9, 2009 at 8:51 PM, Jade wrote: > Here are the code snippets for a better understanding, > > //The form > Form form = new Form("form"){ > > /** > * > */ >

Re: [VOTE] Release Wicket 1.4-rc5

2009-06-09 Thread Jade
[X] Yes release 1.4-rc5 [ ] No, don't release it On Tue, Jun 9, 2009 at 5:23 PM, Jeremy Thomerson wrote: > [X] Yes release 1.4-rc5 > [ ] No, don't release it > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > > On Tue, Jun 9, 2009 at 10:08 AM, Jeremy > Thomerson wrote: > > > > [ ]

Re: AjaxLink and Form Validation

2009-06-09 Thread Jade
); setRedirect(false); } } }); On Tue, Jun 9, 2009 at 5:10 PM, Jade wrote: > Oh...Anyways as of now, I am not setting the setDefaultProcessing on the > AjaxButton... > > Thanks again! > > On Tue, Jun 9, 2009 at 5:06 PM, Igor Va

Re: AjaxLink and Form Validation

2009-06-09 Thread Jade
> onsubmit() is only called if validation passes or you called > > setdefaultformprocessing(true) on the button/submitlink. > > > > -igor > > > > On Tue, Jun 9, 2009 at 7:52 AM, Jade wrote: > >> Well - I did try using the AjaxSubmitLink, the validation happ

Re: AjaxLink and Form Validation

2009-06-09 Thread Jade
is only called if validation passes or you called > setdefaultformprocessing(true) on the button/submitlink. > > -igor > > On Tue, Jun 9, 2009 at 7:52 AM, Jade wrote: > > Well - I did try using the AjaxSubmitLink, the validation happens during > the > > link click an

Re: AjaxLink and Form Validation

2009-06-09 Thread Jade
am getting wrong here? On Tue, Jun 9, 2009 at 4:42 PM, Igor Vaynberg wrote: > if you need to submit the form use ajaxsubmitlink, if you dont then > use the normal ajaxlink. > > -igor > > On Tue, Jun 9, 2009 at 7:39 AM, Jade wrote: > > Hi Igor, > > > > Yes,

Re: AjaxLink and Form Validation

2009-06-09 Thread Jade
Vaynberg wrote: > ajaxlink does not submit the form so no validation will happen and it > doesnt have an onsubmit method. you are mixing up ajaxlink, > ajaxsubmitlink, and ajaxbutton. > > -igor > > On Tue, Jun 9, 2009 at 2:30 AM, Jade wrote: > > Hi all, > > > >

AjaxLink and Form Validation

2009-06-09 Thread Jade
d the validation does not happen in the form, which I came to know by eclipse debug sequence. Am I doing something wrong here, I am still very much confused why its not called. Also, any advices for better implementation of the functionality would be of great help. Thanks, Jade

AjaxLink and Form Validation

2009-06-09 Thread Jade
d the validation does not happen in the form, which I came to know by eclipse debug sequence. Am I doing something wrong here, I am still very much confused why its not called. Also, any advices for better implementation of the functionality would be of great help. Thanks, Jade