 |
 |
 |
Simply, I have an xml file, which has a list of elements such as:
<elements>
<element>
<name>xyz</name>
<id>1234</id>
<description>some text</description>
</element>
<element>
<name>xyz</name>
<id>1234</id>
<description>some other text</description>
</element>
</elements>
What I'd like to do, is end up grouping them together based on the name
and ID, via a <UL>, so the output would be something like:
*xyz - 1234
*Some Text
*Some other text
I'm pretty sure I either need to do something w/ a nested loop, or a
recursive call, but I'm just unfamilliar w/ xslt (I'm hacking something
together since yesterday). Any suggestions on where to start?
i was thinking (pseudo code in c/c# syntax)
for (int i = 0; i > elements.size; i++)
{
for (int j = 0; j > elements.size; j++)
{
// have we found a sub-item
if(elements[i].name == elements[j].name)
{
//Have we set up the base element?
if(baseElementDefined[elements[i].name] != true)
{
AddBaseElement();
}
AddSubElement();
}
}
}
THis will work, but obviously is outside the paradigm of xslt
(nevermind the syntax).
I'm just stuck, and looking for a little guidance. Thanks
|
 | 

|  |
These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.
|  |
| |
 |
 |
 |