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
There might be cases where incorrect category is used when determining or changing element visibility in filtered tree. For example ,if we have tree like:
Subject
|- Model
|- Category A
|- Element A
|- Element B (from Category B)
Filter path to Element B will be: Subject -> Model -> Category A -> Element A -> Element B
At the moment when we try to determine/change visibility of Element B we go up in filter path and look for category. In this particular example we will find Category A and use it. However, Element B is in Category B and it should be used instead in all visibility operations.
Need a way to find real element category instead of the one that is shown in tree as an ancestor.
The text was updated successfully, but these errors were encountered:
There might be cases where incorrect category is used when determining or changing element visibility in filtered tree. For example ,if we have tree like:
Filter path to Element B will be:
Subject -> Model -> Category A -> Element A -> Element B
At the moment when we try to determine/change visibility of
Element B
we go up in filter path and look for category. In this particular example we will findCategory A
and use it. However,Element B
is inCategory B
and it should be used instead in all visibility operations.Need a way to find real element category instead of the one that is shown in tree as an ancestor.
The text was updated successfully, but these errors were encountered: