You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Valid only for Combobox's selectionMode = multiple
Whenever the user opens up the dropdown and selected some items, if he hits the Cancel button, the selection made is not cleared.
Potential fix would be to clear reset the combo.list.selectedItems to an empty array ([]) and then call combo._validateMultiple(true), so the widget state gets update accordingly.
Note that I'm not adding the [bug] label because this regression wasn't (and will not be) in any official release. It broke after 0.8 and will be fixed before 0.9.
brunano21
added a commit
to brunano21/deliteful
that referenced
this issue
Jan 4, 2017
Actually, this fix isn't quite right. The "Cancel" button is clearing the selection, rather than restoring the selection to what it was before the dropdown was opened.
But this begs the question: Why have a cancel button at all? There's no button on desktop that lets you revert to the state before the dropdown was opened.
Valid only for Combobox's
selectionMode = multiple
Whenever the user opens up the dropdown and selected some items, if he hits the Cancel button, the selection made is not cleared.
Potential fix would be to clear reset the
combo.list.selectedItems
to an empty array ([]
) and then callcombo._validateMultiple(true)
, so the widget state gets update accordingly.This bug has been introduced by 785de84.
The text was updated successfully, but these errors were encountered: