select with large resultset

I add select with nearly 1000 entry, i click to the bottom arrow i have the vaadin select, it’s ajax component, it look nice, efficient etc. my pbme with the select :

i type word in the filter the select is refreshed, i choose one item i click another treatment button in the same page the value of select is transmitted, everything ok, now i want to reset the select like the first load of the page(choose the blank entry), i drop the value in the filter i click the treatment button the old selected value persist, so if i have selected the 300 postion in the select i must scroll to the first position, choose the blank item to reset the select.

My suggestion to add small cross near the arrow to reset the select

Hi!

You can easily add this reset-cross yourself. Just add a Button with style Button.STYLE_LINK and in the ClickListener call select.setValue(null). Tip: If you set the button caption to “” and add an icon to it, only the icon will be displayed.

HTH,
/Jonatan