|
| I have a XML like this:
<Catalog>
<CD>
<author>firstAuthor</author>
<titile>firstTitle</Title>
<date>xx-xx-xxxx</date>
</CD>
<CD>
<author>secondAuthor</author>
<titile>secondTitle</Title>
<date>xx-xx-xxxx</date>
</CD>
<CD>
<author>thirdAuthor</author>
<titile>thirdTitle</Title>
<date>xx-xx-xxxx</date>
</CD>
</Catalog>
In my XSL file, I created a combobox to contain the "author" list. When
user changes the selection, I would like to display only the content of
the current "CD" node. (eg. When the selection is "secondAuthor", only
display "secondTitle" and "xx-xx-xxxx"). So I am wondering whether this
is a way to directly jump to (select) the n-th node or do you have
other suggestion? Thanks very much.
Leo
|
|