Re: [ANNOUNCE] Apache Wicket 6.15.0 is released

2014-04-28 Thread mesketh
The latest release 6.15.0 includes an improvement (https://issues.apache.org/jira/browse/WICKET-2542) delivering a new ajaxified AjaxWizardButtonBar. I noticed that the only/default constructor uses the concrete org.apache.wicket.extensions.wizard.Wizard type and not

Re: Feedback panel title area

2014-04-28 Thread Jesse Long
On 25/04/2014 18:30, Entropy wrote: I just tried putting some text inside the feedback panel's html like so: div class=errorpanel id=errorpanel wicket:id=feedbackThis is a test/div That didn't work. This is a test was overwritten when the feedback panel rendered. Which is exactly what I

Re: [ANNOUNCE] Apache Wicket 6.15.0 is released

2014-04-28 Thread Sven Meier
Hi, AjaxWizardButtonBar holds a Wizard to update it on Ajax requests, an IWizard would not suffice. Regards Sven On 04/28/2014 08:10 AM, mesketh wrote: The latest release 6.15.0 includes an improvement (https://issues.apache.org/jira/browse/WICKET-2542) delivering a new ajaxified

Re: [ANNOUNCE] Apache Wicket 6.15.0 is released

2014-04-28 Thread chorleyboy
That's true although, it does that through the Component api. I don't suppose you could cast the IWizard to a Component :) No, I didn't think so. Thanks for the prompt input. I'll try and get rid of this legacy code. cheers. -m. -- View this message in context:

Re: DataTable's FilterToolbar generics broken

2014-04-28 Thread Paul Bors
I think you're confused. If you want to filter a collection based on type T, then your filter your extend T. The idea here is that your model object type for the filter is the same as that retrieved by the data provider. As such you can have a POJO of the same type T on which you apply the