Hey guys
sorry for the long title
I've got an XML data structure as follows:
Is there anyway through XSLT I can create hyperlinks to the diffrent 'datasets'?
For example, my XSLT generates 2 hyperlinks, one for dataset1 and one for dataset2. When i click a hyperlink it changes a div or iframe (something like that) to display the relevant set.
Just wondering if this is possible before i attempt it by a delve into JavaScript :!
thanks
andy
sorry for the long title
Code:
<entry>
<name>New Entry</name>
<dataSet1>
<showingResults>1-5</showingResults
<result>
<docTitle>April 2005</docTitle>
<docPath>c:/april2005.pdf</docPath>
</result>
<result>
<docTitle>March 2005</docTitle>
<docPath>c:/march2005.pdf</docPath>
</result>
...more <result> entries
</dataset1>
<dataset2>
... same structure as above, diffrent values
</dataset2>
</entry>
Is there anyway through XSLT I can create hyperlinks to the diffrent 'datasets'?
For example, my XSLT generates 2 hyperlinks, one for dataset1 and one for dataset2. When i click a hyperlink it changes a div or iframe (something like that) to display the relevant set.
Just wondering if this is possible before i attempt it by a delve into JavaScript :!
thanks
andy