RE: How to extends repeater.data.table.HeadersToolbar (How to resolve CssAttributeBehavior) ?

2016-04-25 Thread andre seame
Thanks, But it no so easy, because the idea is to modify the populateItem of refreshingView. Thanks, PHL. De : Sven Meier Envoyé : lundi 25 avril 2016 07:22 À : users@wicket.apache.org Objet : Re: How to extends

Re: Panel.this always giving previous version of the object but not the modified one.

2016-04-25 Thread Martin Grigorov
Hi, You need: Page openerPage = getPageReference().getPage(); openerPage.send(openerPage, Broadcast.BREADTH, new GridValueChangeEvent(target, selectedRow)); Then any component inside 'openerPage' will receive this event and can read and store the selected row from it. Martin Grigorov Wicket

Re: Panel.this always giving previous version of the object but not the modified one.

2016-04-25 Thread durairaj t
Please refer the below formatted code snippet. I'm setting selectedRow value in page creator and expecting the same in window close call back (Line number 24), I tried with the Inter component communication examples as you suggested. But I don't know how to update the selectedRow in line #24

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-25 Thread fachhoch
Yes, Thank you . I will try websocket. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/open-connection-to-async-servlet-and-initiate-wicket-ajax-request-results-ComponentNotFoundException-tp4674357p4674416.html Sent from the Users forum mailing list archive at

[wicketstuff-restannotations] How to automatically generate Swagger definitions.

2016-04-25 Thread Fabio Fioretti
Hi all, I have been successfully using wicketstuff-restannotations to create some REST web services in my Wicket 6.22.0 application - thanks for that, very straightforward. Now that my REST resources and methods are complete and correctly annotated, I would need to generate the related Swagger

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-25 Thread Martin Grigorov
On Mon, Apr 25, 2016 at 3:27 PM, fachhoch wrote: > Hi Martin, > Before adding the new request I find the previous request and call complete > on that and if user closes browser or logs out , the request times out and > gets closed. There will be just one request per user at

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-25 Thread fachhoch
Hi Martin, Before adding the new request I find the previous request and call complete on that and if user closes browser or logs out , the request times out and gets closed. There will be just one request per user at any given time.

Re: How to extends repeater.data.table.HeadersToolbar (How to resolve CssAttributeBehavior) ?

2016-04-25 Thread Sven Meier
Hi, HeadersToolbar already creates a RefreshingView in its constructor, you should not repeat that. The following should do: public THHeadersToolbar(final DataTable table, final ISortStateLocator stateLocator) { // inherited stuff super(table); // ...