Re: Wicket collapsable panel

2019-04-17 Thread Martin Grigorov
On Wed, Apr 17, 2019 at 1:00 PM Sibgha Nazir wrote: > Is it possible to get a transition effect with this method? I.e. opening > and closing of tjr panel. > Sure! You can use jQuery (comes with Wicket) or any other JS based solution to do the animation. See jQuery slide and fade methods. Also

Re: Wicket collapsable panel

2019-04-17 Thread Sibgha Nazir
Is it possible to get a transition effect with this method? I.e. opening and closing of tjr panel. On Tue, Apr 16, 2019, 09:04 Ernesto Reinaldo Barreiro Hi, > > There are several ways to do this. E.g > > 1- Use javascript at client side and just hide nent of panel (bound to the > link that

Re: Wicket collapsable panel

2019-04-16 Thread Ernesto Reinaldo Barreiro
Hi, There are several ways to do this. E.g 1- Use javascript at client side and just hide nent of panel (bound to the link that toggles the panel) 2- Use wicket AJAX and content.steVisible(false|true) where content is the panel containing you "box" content. This logic attached to the AJAX link