Re: Best way to choose different render

2013-05-28 Thread coincoinfou
h ok ! thank you -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Best-way-to-choose-different-render-tp4658976p4659101.html Sent from the Users forum mailing list archive at Nabble.com. - To

WICKET-4594

2012-07-18 Thread coincoinfou
Have you forgot to commit the patch ? https://issues.apache.org/jira/browse/WICKET-4594 https://issues.apache.org/jira/browse/WICKET-4594 I can't use stateless links anymore -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/WICKET-4594-tp4650587.html Sent from the

Re: Can't deal with wicket atmosphere

2012-06-10 Thread coincoinfou
he didn't find org.atmosphere.cpr.AtmosphereResource Caused by: java.lang.IllegalStateException: MeteorServlet not defined in web.xml at org.atmosphere.cpr.Meteor.build(Meteor.java:170) at org.atmosphere.cpr.Meteor.build(Meteor.java:151) at

Can't deal with wicket atmosphere

2012-06-09 Thread coincoinfou
I migrate my app from 5 to 6 and everything work fine. However i'm unable to try atmosphere due to network 500 server error Here is my configuration : FilterHolder atmosphere = new FilterHolder(AtmosphereFilter.class); atmosphere.setName(AtmosphereApplication);

Wicket 6 resource aggregation..

2012-03-30 Thread coincoinfou
is moved or doesn't exist anymore ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-6-resource-aggregation-tp4518466p4518466.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Wicket 6 resource aggregation..

2012-03-30 Thread coincoinfou
I got it ! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-6-resource-aggregation-tp4518466p4518530.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: Ajax busy indicator getting stuck

2011-11-18 Thread coincoinfou
Same problem with IndicatingAjaxLink when I switch to AjaxChannel.Type.DROP -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Ajax-busy-indicator-getting-stuck-tp4082837p4083026.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Same link, multiple response

2011-10-12 Thread coincoinfou
I click link for tab2, first time I have tab2 second time tab3 third time tab1 Strange ! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Same-link-multiple-response-tp3896354p3897184.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Same link, multiple response

2011-10-12 Thread coincoinfou
Page is mounted like this : mount(new MountedMapper(/mount, MyPage.class)); With one parameter : pageid click on tab 3 : i see panel3 and this url : https://localhost/web/mount?57-3.ILinkListener-tabs-tabs~container-tabs-3-linkpageid=766978 click on tab4, i see panel1 and this url :

Re: How my perfs are good

2011-09-02 Thread coincoinfou
I have profiled. It seems that the way the page is built. Mostly in listview, I need labels. These labels are not DetachableModels or whatever because another framework loads that on the fly. For 50 labels, I get 50 request of 1 second each. It shouldn't be like this for two strings.. I'm not sure

How my perfs are good

2011-08-30 Thread coincoinfou
The very first request : RequestLogger.log():67 - startTime=2011-08-29 19:24:58,313, duration=43144, url=https://mycompany.com/books?code=1452678F;, event={handler=RenderPageRequestHandler,pageClass=com.mycompany.web.pages.BooksPage,pageParameters={code=1452678F},pageId=0},

Sometimes a long time to construct page with tabs

2011-07-28 Thread coincoinfou
Sometimes it takes a long time to construct my page She looks like this : LoadableDetachableModel myObject = new LoadableDetachableModel(String id) { String id; LoadableDetachableModel(String id) { this.id = id; } protected Object load() { return

Re: Avoid doing lot of Ajax request

2011-07-23 Thread coincoinfou
But I have to throttle delay for a set of same type links not only one -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Avoid-doing-lot-of-Ajax-request-tp3687472p3688488.html Sent from the Users forum mailing list archive at Nabble.com.

Avoid doing lot of Ajax request

2011-07-22 Thread coincoinfou
I have alot of onmouseover ajax request in one panel. How to avoid queuing all request when mouse move is too fast and ideally only do the last ? I tried with a thread but i'm out of the context : no application is defined Thank you -- View this message in context: