How to store array in XSL

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nsakhare
    New Member
    • Dec 2012
    • 1

    How to store array in XSL

    I want to send the value from the 3 tags <paper>, <sides> and <count> to the jsp function.My existing XSL is:


    Code:
    <xsl:for-each select="EScan">
        <tr align="center" >
            <xsl:variable name="paperValue" select="Paper" />
            <xsl:variable name="sidesValue" select="Sides" />
            <xsl:variable name="countValue" select="Count" />
            <td align="left" class="greyheadertextbold"><a href="javascript:onDeleteClick1('{$paperValue}','{$sidesValue}','{$countValue}')" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('delete2','','delete2.gif',1)">delete</a></td>
     
        </tr>
    </xsl:for-each>
    Can anyone please help??
    Last edited by acoder; Dec 17 '12, 09:20 AM. Reason: Added [code] tags
  • Anas Mosaad
    New Member
    • Jan 2013
    • 185

    #2
    Can you please tell us what is the problem with your code to be able to help.

    Comment

    Working...