Re: Wicket-Source: Click-through from browser back to Java source

2012-02-01 Thread Martin Grigorov
Awesome indeed! @Minas: how hard is to integrate this in WicketForge (IDEA users) ? :-) On Wed, Feb 1, 2012 at 3:21 AM, Jenny Brown jennybro...@gmail.com wrote: Working on someone else's complex wicket pages can result in a lot of time spent hunting for components in the source. What if you

Re: Google bot see my site with errors!!

2012-02-01 Thread Martin Grigorov
On Wed, Feb 1, 2012 at 1:01 AM, Paolo irresistible...@gmail.com wrote: Alle martedì 31 gennaio 2012, Martin Grigorov ha scritto: What exactly is the code at: org.wicket.example.QuoteResult. init (QuoteResult.java: 55) ? package org.wicket.example; import java.util.Locale; import

Re: Cannot detect ModalWindow cancel

2012-02-01 Thread Andrea Del Bene
Hi Jered, this is a known issue, you can find more informations here: https://issues.apache.org/jira/browse/WICKET-3809 I have a ModalWindow where I need to know if the user saved in the WindowClosedCallback or if they chose to click the X to close the window. To do this in Wicket 1.4, I

Re: Wicket-Source: Click-through from browser back to Java source

2012-02-01 Thread Minas Manthos
Sounds great! Would be nice to have it for IDEA too... will look into it. :-) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Source-Click-through-from-browser-back-to-Java-source-tp4346532p4347366.html Sent from the Users forum mailing list archive at

RE: Wiquery and JQWicket crash each other!!!!

2012-02-01 Thread Hielke Hoeve
Better late than never: To respond to your question again: why would you want to use both? They seem to do the same thing... Hielke -Original Message- From: atomix [mailto:say_i_love_you_4e...@yahoo.com] Sent: donderdag 26 januari 2012 21:14 To: users@wicket.apache.org Subject: Re:

Re: Stateless and Ajax

2012-02-01 Thread zlatko99
Thank you all involved in this thread. With your help, I managed to build a login/registration form, totally stateless and submitted with ajax. (Thanks, Robert, for the referenced component, it works really good). This was a proof of concept for me that such a page could be built in Wicket. I

Re: Stateless and Ajax

2012-02-01 Thread Martin Grigorov
On Wed, Feb 1, 2012 at 5:04 PM, zlatko99 zlatko.suslev...@gmail.com wrote: Thank you all involved in this thread. With your help, I managed to build a login/registration form, totally stateless and submitted with ajax. (Thanks, Robert, for the referenced component, it works really good). This

Re: Stateless and Ajax

2012-02-01 Thread vineet semwal
thats right :) ,even the small toggle visibility will have problem ;) ,i have a way of handling that i think but i have not completely programmed it .i am saving all the state in url works well for the small things like visiblty etc. say for replace that thing can be saved on url

Re: Stateless and Ajax

2012-02-01 Thread Igor Vaynberg
if you are using stateless ajax links like that then the fact that the panel has been replaced should be added as a query parameter so the page is reinitialized with the right panel, thats how stateless frameworks work :) -igor On Wed, Feb 1, 2012 at 7:21 AM, Martin Grigorov mgrigo...@apache.org

generateCallbackScript in Wicket 1.5.4 with CryptoMapper

2012-02-01 Thread jchappelle
I have a behavior that generates a url to a page. This behavior is attached to menu items. I have the behavior code below. After moving to Wicket 1.5.4 this is not working. I get a message in the WICKET DEBUG window like this 500 error had text: . I will say that we are using the CryptoMapper and

Re: generateCallbackScript in Wicket 1.5.4 with CryptoMapper

2012-02-01 Thread jchappelle
By the way the ajax response above is not rendering what I put in there. It has a CDATA section and contains [../../../fyBfZ9p6trO9WTR7h0OMLw/fyBce/R7h42]. Josh -- View this message in context:

Re: Wicket-Source: Click-through from browser back to Java source

2012-02-01 Thread Jenny Brown
On Wed, Feb 1, 2012 at 3:57 AM, Minas Manthos minas.mant...@gmail.comwrote: Sounds great! Would be nice to have it for IDEA too... will look into it. :-) I'm glad it sounds useful! :) Let me know if I can be of any assistance in the porting effort. The core behavior is simply listening for

RE: Cannot detect ModalWindow cancel

2012-02-01 Thread Chris Colman
In trying to solve your problem of determining how the user closed the form you might find the ModalX library in Wicketstuff useful. ModalX (Modal eXtensions) for Wicket (part of Wickestuff) provides a generic modal panel, modal form which you can simply extend to build your own modal panels,

Re: Cannot detect ModalWindow cancel

2012-02-01 Thread Jered Myers
Thanks for your help! I will look into this. On 02/01/2012 11:34 AM, Chris Colman wrote: In trying to solve your problem of determining how the user closed the form you might find the ModalX library in Wicketstuff useful. ModalX (Modal eXtensions) for Wicket (part of Wickestuff) provides a

SetResponsePage Ajax

2012-02-01 Thread Richard W. Adams
I'm having a hard time understanding what happens when setResponsePage() is called while processing an Ajax request. Does Wicket: 1. Render the response page's HTML send it back through the Ajax connection? 2. Tell the browser to make a new request (i.e., redirect) to the new page? 3.

Re: SetResponsePage Ajax

2012-02-01 Thread Sven Meier
Take a look at WebPageRenderer#respond(): Inside Ajax requests it responds with a redirect, which is then analyzed and performed by wicket-ajax.js in the browser. Sven On 02/01/2012 09:43 PM, Richard W. Adams wrote: I'm having a hard time understanding what happens when setResponsePage() is