Michele De Nardi
Michele De Nardi

Reputation: 636

Lotus notes: open view from outline with categoryname

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

Answers (1)

Knut Herrmann
Knut Herrmann

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

Related Questions