Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hello everyone,
I'm trying to code around what I believe is a bug in Arbortext 6.0 when numbering list items. In short, Arbortext is continue the numbering from a sublist onto the next item in the parent list.
I'm trying to develop a workaround by adding a new counter for the sublist. However, my counter is enumerating at the wrong level.
Consider the following markup....
<amend>
<provbody>
<prov>
<subprov><label>1</label></subprov>
<subprov><label>2</label></subprov>
....</amend>
I want the subprov/label to increment. However, what I am seeing happen is the enumeration is occuring at the <amend> level instead. So...
<amend>
...<subprov><label>1</label>
<subprov><label>1</label>
</amend>
<amend>
...<subprov><label>2</label>
<subprov><label>2</label>
</amend>
My Xpath to set the counter is working correctly as this is not obstructing the list higher up in the XML. But I cannot see how to get FOSI to enumerate within the <amend>.
Here is my FOSI that is setting the counter.
<att>
<specval attname="gentext-only" attloc="system-var" attval="#ANY"/">
</att>
Thanks for any assistance!