RE: A few XForms Questions...

> From: Micah Dubinko 
> 
> Bear with us. We're discussing a closely related issue, and 
> we don't want to
> give the wrong answer. Later this week, if all goes well. Thanks! -m

Sounds good.  

Another approach is to retain the use of <choices> for inner nodes and <item> or <itemset> for leaf nodes, and add nodeset binding attributes to <choices>. 

Instead of... 

> strong as the nested repeat. I would prefer something like 
> the following
> where the nodeset context is more obvious:
> 
> <selectOne ref="">
> 	<caption>Select a category and keyword</caption>
> 		<itemset nodeset="">
> 			<caption ref=""/>
> 			<value ref=""/>
> 			<itemset nodeset="">
> 				<caption ref=""/>
> 				<value ref=""/>
> 			</itemset>
> 		</itemset>
> <selectOne>
 
...you would have

<selectOne ref="">
	<caption/>
	<choices nodeset="">
		<caption ref=""/>
		<itemset nodeset="">
			<caption ref=""/>
			<value ref=""/>
		</itemset>
	</choices>
<selectOne>

+-DRD-+

Received on Wednesday, 15 May 2002 08:50:13 UTC