Re: Create Request Manually

2014-08-04 Thread Martin Grigorov
Hi, You should do something like https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/core/util/string/ComponentRenderer.java#L46 You almost have it. The only extra thing you should do is to export the Application as a ThreadLocal. You can get a reference to it

Re: Why is MultiFileUploadField not offering protected boolean forceCloseStreamsOnDetach?

2014-08-04 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-5659 Will be possible in Wicket 6.17.0 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Jul 30, 2014 at 11:55 AM, Sven Meier s...@meiers.net wrote: Please create a RFE in Jira. Regards Sven On 07/30/2014

Re: How to handle click on removed links - WicketRuntimeException (Component 'xxx' has been removed from page)?

2014-08-04 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-5660 From now on Wicket will throw ComponentNotFoundException instead of the more generic WicketRuntimeException. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sat, Jul 12, 2014 at 8:40 PM, Martin Grigorov

Re: JCarousel and DynamicImageResource link not working

2014-08-04 Thread Martin Grigorov
Hi, On Mon, Jul 28, 2014 at 10:32 PM, Delange delan...@telfort.nl wrote: Hi, after 2 years I'm almost ready with my website and strugling with the last thing: I have a page which contains a JCarousel with multiple images (jpg). A customer should click on a photo and then see the picure in a

Re: onfocus event getting called recursively in Apache wicket

2014-08-04 Thread Martin Grigorov
Hi, On Wed, Jul 30, 2014 at 7:35 PM, suvojit168 suvojit...@gmail.com wrote: Hi, Thanks for replying. My requirement is to clear the textfield on onfocus (although here I was trying to set a string in textfield). Unless I add the component to ajaxtarget, how will it be updated on UI?

Re: onfocus event getting called recursively in Apache wicket

2014-08-04 Thread Martin Grigorov
On Thu, Jul 31, 2014 at 11:45 AM, suvojit168 suvojit...@gmail.com wrote: Hi Sven, Can you please make me understand why should I use JS here over wicket. I have read somewhere lately that onfocus in wicket has some fault (Perhaps in version 1.4. I am not sure if it has been fixed in 1.6 or

Re: Button and AutoTextLabelResolver

2014-08-04 Thread Martin Grigorov
Hi, Please create a quickstart and attach it to a ticket in JIRA. Thanks! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Jul 30, 2014 at 11:33 AM, Patrick Davids patrick.dav...@nubologic.com wrote: Hi all, it seems it is not possible to use

Page navigation multiple click events put in queue...

2014-08-04 Thread dharmendra pandey
Hi, We want to block/queue the multiple click event on page navigation link when user already clicked on some link, We have written our implementation via extending NavigationToolbar and want to add the event to blocking queue. Please see the implementation below... @SuppressWarnings({ serial,

Re: Page navigation multiple click events put in queue...

2014-08-04 Thread Martin Grigorov
Hi, On Mon, Aug 4, 2014 at 5:26 PM, dharmendra pandey dharmendra.pan...@gmail.com wrote: Hi, We want to block/queue the multiple click event on page navigation link when user already clicked on some link, We have written our implementation via extending NavigationToolbar and want to add