We're using TS 6.1 on Aix.
In an XML-type DCT, I want to visually separate attributes from items. So I thought I'd put the attributes in a sub-container:
<container location="shop" max="99" min="0" name="shop">
<label>Shop</label>
<description>Optional shop tag</description>
<container name="Shop Attributes">
<label>Shop Attributes</label>
<item name="desc" pathid="
@desc">
<label>desc</label>
<description>Description attribute of Shop.</description>
<text size="60"/>
</item>
<item name="url" pathid="
@url">
<label>url</label>
<description>URL attribute of Shop.</description>
<text size="60"/>
</item>
</container>
<item name="url" pathid="url">
<label>Url</label>
<description/>
<text/>
</item>
<item name="desc" pathid="desc">
<label>Desc</label>
<description/>
<text/>
</item>
</container>
When I save the DCR, the following is written to the file:
<shop desc="desc 1" url="url 1">
<desc>shop item desc</desc>
<url>shop item url</url>
</shop>
<shop desc="d attr " url="u attr">
<desc>desc2</desc>
<url>url2</url>
</shop>
That's exactly what I want. However, when I open the same DCR via the DCT, the attributes don't show up at all -- FormsPublisher assumes they're empty.
Any suggestions? How else can I control the presentation of elements in a form? HTML markup in labels and descriptions seems to be ignored.
Thanks,
S.