Reading Arraylist in XSL
843834Oct 20 2009 — edited Oct 21 2009Hi
I have an arrayList in java, which has some values. I need to read each value in the XSL. When ever i am trying to
read the arrayList in XSL,it gives me the whole arrayList.
These are the values for me in the ArrayList:
[New, InitialLoad, InitialLoad, New, InitialLoad, InitialLoad, New, InitialLoad, InitialLoad, InitialLoad, New, InitialLoad, InitialLoad, New, InitialLoad, InitialLoad, New, InitialLoad]
I have set the arraylist as a paramter to XSLT which is reading the arrayList but when i read the arrayList with the help of below XSL code,i get all the values of the arrayList as a whole and not one-by-one
My XSL code:
<xsl:param name = "triggerModles">
<xsl:value-of select="$triggerModles" />
</xsl:param>
thanks in advance
regards
Prashanth