> Michael Semcheski wrote:
>
> >match="z:row[@Type='Matrix']/z:row[@MatrixOpt='1']
> >| z:row[@Type='Matrix']/z:row[@MatrixOpt='5']
> >| z:row[@Type='Matrix']/z:row[@MatrixOpt='6']"
> >
> >
> Try
>
> match="z:row[@Type='Matrix']/z:row[@MatrixOpt='1' or
> @MatrixOpt='5' or @MatrixOpt='6']"
>
> for something that is a bit less cumbersome.
>
With XSLT 2.0 you can write
match="z:row[@Type='Matrix']/z:row[@MatrixOpt=('1', '5', '6')]"
FWIW!
Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|