Reputation: 636
Is there a method to open a view from outline using 'categoryname' property ? I try to do this using 'Named element' and put into formula for the named element but i can't use @command formula in that field. So there is another one way to use categoryname in outline ? thank's
Upvotes: 2
Views: 263
Reputation: 30960
Use type "Action" instead of "Named element". You can use @Commands then.
To open a view at a certain category you'd add the formula
@Command([OpenView];"yourView"; "yourKey");
@Command([ViewCollapseAll]);
@Command([ViewExpandWithChildren])
Upvotes: 4