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
I've a case where a user might select many items, or where some items have been selected by default.
In case there are ~5+ selected items, I'd like the user to be able to clear the selected items so that the multi-selection can be re-done.
I tried to re-bind the Data, but this does not redraw/update the check components of the dropdownlist.
So if the selectedValues list is cleared, the items remain checked and once an item is checked, the SelectedValuesChanged event is triggered and set's the selectedValues to it's initial/previous state.
A proposal is to expose a Clear method or similar for the selectedValues, or if it could be solved by using a List instead of a ReadOnlyList for the SelectedValues?
The text was updated successfully, but these errors were encountered:
First off, great work!
I've a case where a user might select many items, or where some items have been selected by default.
In case there are ~5+ selected items, I'd like the user to be able to clear the selected items so that the multi-selection can be re-done.
I tried to re-bind the Data, but this does not redraw/update the check components of the dropdownlist.
So if the selectedValues list is cleared, the items remain checked and once an item is checked, the SelectedValuesChanged event is triggered and set's the selectedValues to it's initial/previous state.
A proposal is to expose a Clear method or similar for the selectedValues, or if it could be solved by using a List instead of a ReadOnlyList for the SelectedValues?
The text was updated successfully, but these errors were encountered: