Re: DropDownChoice - filtering and pagination

2012-04-10 Thread Igor Vaynberg
inal Message- >> From: Martin Grigorov [mailto:mgrigo...@apache.org] >> Sent: Tuesday, April 10, 2012 8:53 >> To: users@wicket.apache.org >> Subject: Re: DropDownChoice - filtering and pagination >> >> On Thu, Apr 5, 2012 at 4:32 PM, Michal Wegrzyn >>

RE: DropDownChoice - filtering and pagination

2012-04-10 Thread Michal Wegrzyn
Hi Martin, Sounds and looks great! Will it be added to wicket-core? 6.x? Best regards, Michal Wegrzyn > -Original Message- > From: Martin Grigorov [mailto:mgrigo...@apache.org] > Sent: Tuesday, April 10, 2012 8:53 > To: users@wicket.apache.org > Subject: Re: DropDownCho

Re: DropDownChoice - filtering and pagination

2012-04-09 Thread Martin Grigorov
On Thu, Apr 5, 2012 at 4:32 PM, Michal Wegrzyn wrote: > Hi, > > What is the best way to create option components with Wicket for large > datasets? > DropDownChoice renders all contained items. Do you maybe know any wicket > implementation of drop down choice which allows pagination? > > Other th

Re: DropDownChoice - filtering and pagination

2012-04-05 Thread Dan Retzlaff
Hi Michal, Paging and filtering in a single widget might be too much. An approach I took once is to use AutoCompleteTextField, and render an AJAX link at the bottom of the "drop down" that says "Show All". When clicked, a modal pops up with a traditional AJAX-pageable DataView. I also added a down

DropDownChoice - filtering and pagination

2012-04-05 Thread Michal Wegrzyn
Hi, What is the best way to create option components with Wicket for large datasets? DropDownChoice renders all contained items. Do you maybe know any wicket implementation of drop down choice which allows pagination? Other thing is filtering. I look for something similar to Dojo's FilteringSel