I have menu like this:
item1
- item1.1
- item 1.1.1
- item 1.1.2
- item 1.1.3
- item1.2
- item 1.2.1
- item 1.2.2
item2
- item2.1
- item2.2
I set `setOnlyActiveBranch(true); And if I choose item.1.1.1 or item.1.1 I get this one:
item1
- item1.1
- item 1.1.1
- item 1.1.2
- item 1.1.3
At the same time if I press item1 I got this one:
item1
- item1.1
- item1.2
I don't want to hide other root nodes if the current node is active. So how to show menu this way (in case I choose item1.1. for example)?:
item1
- item1.1
- item 1.1.1
- item 1.1.2
- item 1.1.3
- item1.2
item2
Is it possible to to it via standart methods or should I create new helper?