Re: filtering a datatable

2010-01-18 Thread TahitianGabriel
wrote: > > > I you have a piece of code of how to use filter and > IFilterStateLocator... > > > -- View this message in context: http://old.nabble.com/filtering-a-datatable-tp23062814p27214593.html Sent from the Wicket - User mailing

Re: filtering a datatable

2010-01-17 Thread orkun ozen
nly the javadoc (how >> >> to write html? simple example?) >> >> >> >> I you have a piece of code of how to use filter and >> >> IFilterStateLocator... >> >> >> >> thx, >> >> >> >> >> > >>

Re: filtering a datatable

2009-04-15 Thread Julien Graglia
Le mercredi 15 avril 2009 à 20:02 +0300, Serkan Camurcuoglu a écrit : > sorry for my previous post.. what i've previously done is: > > - add a filtertoolbar to your datatable > - make some of your columns IFilteredColumn, for example I've used > TextFilteredPropertyColumn but there are also other

Re: filtering a datatable

2009-04-15 Thread Julien Graglia
I reply to myself... I just have found http://www.nabble.com/Problems-with-clearing-of-filter-form-td16098239.html I have to include the table in a form with some form specific components (focus-restore and focus-tracker)

Re: filtering a datatable

2009-04-15 Thread Serkan Camurcuoglu
sorry for my previous post.. what i've previously done is: - add a filtertoolbar to your datatable - make some of your columns IFilteredColumn, for example I've used TextFilteredPropertyColumn but there are also others - make your dataprovider implement IFilterStateLocator - implement the filte

Re: filtering a datatable

2009-04-15 Thread Serkan Camurcuoglu
you can try FilterToolbar Julien Graglia wrote: Hi, I try to filter rows of a datatable : I already have sort the rows very easily (using a SortableDataProvider) but now I need to filter some columns.. which seems to me a rather "classic" task. I have found classes in org.apache.wicket.exten

filtering a datatable

2009-04-15 Thread Julien Graglia
Hi, I try to filter rows of a datatable : I already have sort the rows very easily (using a SortableDataProvider) but now I need to filter some columns.. which seems to me a rather "classic" task. I have found classes in org.apache.wicket.extensions.markup.html.repeater.data.table.filter like Ch