Re: toggle element for select1's item ?

Hello

LJG Hi, I was wondering if there is an effective way of replacing a set of 
LJG triggers (which toggles a switch) with a select1 element?

You could have a series of xf:group elements instead of xf:case elements. 
Each xf:group is bound to the same node that the select1 is, but each 
specifies that the node has a different value. Something like:

<xf:select1 ref="selectNode">
...
</xf:select1>

<xf:group ref="selectNode[.='val1']">
...
</xf:group>

<xf:group ref="selectNode[.='val2']">
...
</xf:group>

Only one (or none) can be relevant at the same time, so this can be used 
to hide the others.

I hope this gives you some ideas.

Swithun.

Received on Tuesday, 21 July 2009 21:32:02 UTC