Hello,
I have an xml type dcr with no DTD validation and am having an issue with using the choice element. When I dont use it I can set attributes on the country node no problem.
<country name="value">
</country>
When I do use it I get this error when trying to save the record
"Save was unsuccessful. Unable to create a valid XMLDOMContext."
<root-container location="country" name="country">
<choice name="country_choice" min="1" max="1" default="1">
<label>Country</label>
<item name="country_name" pathid="
@name">
<label>Country Name</label>
<description>Example: United States of America. Choose the (+) control to specify a name not in this list.</description>
<select required="t">
<option value="" label="" />
<inline command="some.ipl"/>
</select>
</item>
<item name="country_other" pathid="
@name">
<label>Other Country Name</label>
<description>Other country descriptor that does not appear in the list of country names.</description>
<text required="t" size="65" />
</item>
</choice>
</root-container>
I'm stumped any ideas?