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
if I have 3 items selected. I get at least 4 changed notifications plus a clear notification when delete is clicked. I think the intermediary change notifications are too much, only the final change and clear should be sent
In AbstractSelect line 209 calls clearValue(false)...in that function line 269 calls item.deselect(silent) which is false, so item.deselect() triggers discreet changeevents. changing it to item.deselect(true) prevents the discreet events, but I dont know what would be the unintended side efects of that change.
The text was updated successfully, but these errors were encountered:
vegegoku
changed the title
AbstractSelect calls changelisteners in clear when it shouldn't V2
calling clear value for multiselect box will repeat the call for change listener by the number of selected items.
Jul 14, 2024
if I have 3 items selected. I get at least 4 changed notifications plus a clear notification when delete is clicked. I think the intermediary change notifications are too much, only the final change and clear should be sent
In AbstractSelect line 209 calls clearValue(false)...in that function line 269 calls item.deselect(silent) which is false, so item.deselect() triggers discreet changeevents. changing it to item.deselect(true) prevents the discreet events, but I dont know what would be the unintended side efects of that change.
The text was updated successfully, but these errors were encountered: