Re: Accordion folding unfolding smoothly

2015-03-10 Thread Sebastien
Hi, What component/library are you referring to? Best regards, Sebastien On Mon, Mar 9, 2015 at 7:57 AM, avchavan avinash.cha...@yahoo.co.in wrote: any workaround possible? -- View this message in context:

Re: Accordion folding unfolding smoothly

2015-03-10 Thread avchavan
This is what i have tried so far: --HomePage class--- package com.proj.wicket.ui; import java.util.ArrayList; import java.util.List; import org.apache.wicket.Component; import org.apache.wicket.ajax.AjaxEventBehavior; import org.apache.wicket.ajax.AjaxRequestTarget; import

Re: Accordion folding unfolding smoothly

2015-03-10 Thread Maxim Solodovnik
I would recommend you to try: http://7thweb.net/wicket-jquery-ui/accordion/DefaultAccordionPage The code will be much simplier :) On Tue, Mar 10, 2015 at 5:02 PM, avchavan avinash.cha...@yahoo.co.in wrote: This is what i have tried so far: --HomePage class--- package

Re: How to load-balance on AWS with standalone Tomcats

2015-03-10 Thread Martin Grigorov
Hi, In that case I think you don't need custom IPageStore too. It will be redundant. When a request comes Wicket tries to load the page from the HTTP session first. If it is found there then it stores it at the end of the request cycle both in the http session and in the disk (IPageStore). Since

RE: How to load-balance on AWS with standalone Tomcats

2015-03-10 Thread Daniel Del Castillo
Hi Martin, Thanks a lot for your prompt response, that's very helpful. With regards the session affinity, we'll have a Tomcat Session Manager, which is going to serialise sessions into ElastiCache, configured for each Tomcat instance with the same parameters and this should free us from sticky

Re: Accordion folding unfolding smoothly

2015-03-10 Thread avchavan
I have checked that already. but i am not allowed to use it. Hence had write the entire code for accordion. Is it possible to just add the toggle effect? Thanks. -- View this message in context:

Re: Accordion folding unfolding smoothly

2015-03-10 Thread Maxim Solodovnik
you can try to use http://7thweb.net/wicket-jquery-ui/effect/DefaultEffectPage On Tue, Mar 10, 2015 at 5:28 PM, avchavan avinash.cha...@yahoo.co.in wrote: I have checked that already. but i am not allowed to use it. Hence had write the entire code for accordion. Is it possible to just add the

Re: Accordion folding unfolding smoothly

2015-03-10 Thread Maxim Solodovnik
I guess this line: listContainer.add(new AttributeAppender(onclick, new Model($('+listContainer.getMarkupId()+').toggle('slow'; should be listContainer.add(new AttributeAppender(onclick, new Model($('#+listContainer.getMarkupId()+').toggle('slow'; On Tue, Mar 10, 2015 at 7:39 PM,

Re: Accordion folding unfolding smoothly

2015-03-10 Thread avchavan
Not allowed to have dependency. :/ -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Accordion-folding-unfolding-smoothly-tp4669851p4669905.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Accordion folding unfolding smoothly

2015-03-10 Thread Sebastien
Hi, I agree with Maxim, jQuery selector for IDs is '#'. If you are not able to use dependencies (personnaly I would have challenged this with your hierarchy because Wicket jQuery UI is stable and already 3 years old...), you can at least see how it works/is implemented:

Re: Using wicket:... tags messes up css

2015-03-10 Thread Joachim Schrod
On 03/04/15 22:03, Andreas Lundblad wrote: I've noticed that wicket:... tags such as wicket:enclosure messes up the CSS sometimes. In my particular example I have div.formRows div { display: table-row; } and when I try to put an enclosure around a table row, the CSS child

RE: How to load-balance on AWS with standalone Tomcats

2015-03-10 Thread Daniel Del Castillo
Thanks for the input! I will let you know how it goes. Cheers! DDC -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: 10 March 2015 11:18 To: users@wicket.apache.org Subject: Re: How to load-balance on AWS with standalone Tomcats Hi, In that case I think you

Re: DataTable generics vs. IColumn generics

2015-03-10 Thread Sven Meier
Hi, At the current implementation they need to do cols.add(new LocationColumLocation(...)); instead of just cols.add(new LocationColum(...)); I think you mean LocationColumnPerson. nice feature of PropertyColums: Not to have a too strength coupling of what the column displays in the cell and

Re: Will renderHead method be invoked when a component is rendered via wicket events?

2015-03-10 Thread Martin Grigorov
On Tue, Mar 10, 2015 at 3:11 AM, MadasamySankarapandian madas...@mcruncher.com wrote: On Mon, Mar 9, 2015 at 3:03 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi, If a component is rendered then its #renderHead() should be called! On Mon, Mar 9, 2015 at 4:08 AM,