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 29, 2019. It is now read-only.
When a group with nested groups is collapsed, the click event that is triggered does not contain the group ID, which makes tracking the toggle of nested group visibility more difficult.
I managed to track this down to the groupIds property of the ItemSet being empty. It's set to an empty array on line 418 of ItemSet.js in the markDirty function. I don't know if this is a requirement for something later in the process or not, so I didn't make a PR for it.
The text was updated successfully, but these errors were encountered:
When a group with nested groups is collapsed, the
click
event that is triggered does not contain the group ID, which makes tracking the toggle of nested group visibility more difficult.Example can be seen at https://plnkr.co/edit/GdoPTGkda2w0acanUvxL?p=preview. To reproduce, hide the nested group and check printed event log.
I managed to track this down to the
groupIds
property of theItemSet
being empty. It's set to an empty array on line 418 of ItemSet.js in themarkDirty
function. I don't know if this is a requirement for something later in the process or not, so I didn't make a PR for it.The text was updated successfully, but these errors were encountered: