I'm looking for help implementing a vertical menu with Orbeon. Here is an example of what I'm looking for: http://en.wikibooks.org/wiki/XForms/Vertical_Menu .
Any pointers on how to go about implementing this? Here's what I have so far:
<fr:button>
<xforms:label ref="$form-resources/section-1/label"/>
<xforms:toggle case="case-1" ev:event="DOMActivate" />
</fr:button>
<fr:button>
<xforms:label ref="$form-resources/section-2/label"/>
<xforms:toggle case="case-2" ev:event="DOMActivate" />
</fr:button>
<xforms:switch>
<xforms:case id="case-1" selected="true()">
...
This is close, but the buttons don't stay highlighted as the user clicks around the screen. Ideally, the button would stay highlighted unless another button was clicked.
Update: I'm more interested in the visualization (vertical button menu to choose a form section to display, with the button for the section appearing to be toggled or pushed down while the section is displayed).