XSLT help
Posted: Wed Jul 11, 2007 3:44 pm
Hi,
Can anyone please help me?
I have the xml file:
<Issue>
<IssueHistory_CreationDate>2004-01-01</IssueHistory_CreationDate>
<Status>
<Name>Find</Name>
<Amount>28</Amount>
<Name>resolved</Name>
<Amount>0</Amount>
<Name>Finished</Name>
<Amount>0</Amount>
</Status>
<IssueHistory_CreationDate>2004-01-02</IssueHistory_CreationDate>
<Status>
<Name>Find</Name>
<Amount>6</Amount>
<Name>Resolved</Name>
<Amount>6</Amount>
<Name>Finished</Name>
<Amount>4</Amount>
</Status>
But I want to sort the Fined, Resolved and Finished amount
with xslt.
I want that the xslt file generate my xml file to this:
<string>Fined</string>
<Number>28</Number>
<Number>6</Number>
<string>solved</string>
<Number>0</Number>
<Number>6</Number>
<string>Finished</string>
<Number>0</Number>
<Number>4</Number>
Does anyone know how I can do this?
Can anyone please help me?
I have the xml file:
<Issue>
<IssueHistory_CreationDate>2004-01-01</IssueHistory_CreationDate>
<Status>
<Name>Find</Name>
<Amount>28</Amount>
<Name>resolved</Name>
<Amount>0</Amount>
<Name>Finished</Name>
<Amount>0</Amount>
</Status>
<IssueHistory_CreationDate>2004-01-02</IssueHistory_CreationDate>
<Status>
<Name>Find</Name>
<Amount>6</Amount>
<Name>Resolved</Name>
<Amount>6</Amount>
<Name>Finished</Name>
<Amount>4</Amount>
</Status>
But I want to sort the Fined, Resolved and Finished amount
with xslt.
I want that the xslt file generate my xml file to this:
<string>Fined</string>
<Number>28</Number>
<Number>6</Number>
<string>solved</string>
<Number>0</Number>
<Number>6</Number>
<string>Finished</string>
<Number>0</Number>
<Number>4</Number>
Does anyone know how I can do this?