Our test team reported an issue with a SelectItem in our app. It is set for multiples and a picklist like so:
They reported that when the picklist is given focus, and the user arrows down through the items in the picklist, all currently selected items in the picklist are deselected and the item that receives focus is selected. You can see this behavior in the showcase: http://www.smartclient.com/smartgwt/showcase/#multi_select_combobox_category
This seems counter intuitive. The user is navigating through the options and shouldn't expect the selections to change, unless they take an action to select an item like pressing the space bar.
Is it functioning as you intended? It doesn't seem useful to deselect all the items this way. Is there way to change the behavior so it won't deselect items as the user navigates the list with the arrow keys?
Thanks,
Chris
Code:
layerItem.setMultiple(true); layerItem.setMultipleAppearance(MultipleAppearance.PICKLIST);
This seems counter intuitive. The user is navigating through the options and shouldn't expect the selections to change, unless they take an action to select an item like pressing the space bar.
Is it functioning as you intended? It doesn't seem useful to deselect all the items this way. Is there way to change the behavior so it won't deselect items as the user navigates the list with the arrow keys?
Thanks,
Chris
Comment