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
{{ message }}
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
When having a selection list with content binding of a few objects, on which some are selected.
Then changing the bounded data (all selections are cleared)
And re-selecting the same items (with setSelection).
The DOM behind the view has a 'checked' status of false and not true.
Which reveals a bug, that if I click on one of the selected items, despite its check mark, it still "thinks" that the item is not selected.
Thus, have to add in 'setSelection' method, the following line:
this.checked = true; // without jquery $(this).
Which is not at all like the following:
$(this).attr('checked', 'checked');
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When having a selection list with content binding of a few objects, on which some are selected.
Then changing the bounded data (all selections are cleared)
And re-selecting the same items (with setSelection).
The DOM behind the view has a 'checked' status of false and not true.
Which reveals a bug, that if I click on one of the selected items, despite its check mark, it still "thinks" that the item is not selected.
Thus, have to add in 'setSelection' method, the following line:
this.checked = true; // without jquery $(this).
Which is not at all like the following:
$(this).attr('checked', 'checked');
The text was updated successfully, but these errors were encountered: