Open outline expanded

I have created a some new outline entries in the outline: iNotesOutline.

When I save the outline I have expanded a section with a set of indented outline entries under it. In the Notes Client these will be shown as expanded. However, in the browser these are shown as collapsed.

How can I make the outline open expanded? This should only affect the one outline entry that I want to expand - not e.g. “Tools”.

John

Subject: You can try…

You can try to set fExpanded = true/false and reconstuct the outline widget somehting like this;

var oEntry = … // get the entry you want to expand/collapse from your outline widget object;

var fExpand = (some condition? true: false);

oEntry.fExpanded = fExpand;

oOutline.reconstruct(); // oOutline is the parent outline widget object that holds the oEntry.