Commit 232aedc8 authored by wansari's avatar wansari

D14IKAT004 fixed checkbox issue


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97500 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4b832ae6
...@@ -114,10 +114,21 @@ ...@@ -114,10 +114,21 @@
<xsl:variable name="adj_qty"><xsl:value-of select="adj_qty"/></xsl:variable> <xsl:variable name="adj_qty"><xsl:value-of select="adj_qty"/></xsl:variable>
<xsl:variable name="quantity__fc"><xsl:value-of select="quantity__fc"/></xsl:variable> <xsl:variable name="quantity__fc"><xsl:value-of select="quantity__fc"/></xsl:variable>
<xsl:variable name="tot_amt"><xsl:value-of select="tot_amt"/></xsl:variable> <xsl:variable name="tot_amt"><xsl:value-of select="tot_amt"/></xsl:variable>
<xsl:variable name="chkbox"><xsl:value-of select="@selected"/></xsl:variable>
<tr style="text-align:center"> <tr style="text-align:center">
<td style="width:20px"> <!--<td style="width:20px">
<input type="checkbox" name="Detail3.{normalize-space($dbID)}.selectbox" id="Detail3.{normalize-space($dbID)}.selectbox" checked='true' value="true" onClick="setChecked(this)"/> <input type="checkbox" name="Detail3.{normalize-space($dbID)}.selectbox" id="Detail3.{normalize-space($dbID)}.selectbox" checked='true' value="true" onClick="setChecked(this)"/>
</td>-->
<td>
<xsl:choose>
<xsl:when test="$chkbox ='Y'">
<input type="checkbox" name="Detail3.{normalize-space($dbID)}.selectbox" id="Detail3.{normalize-space($dbID)}.selectbox" checked='true' value="true" onClick="setChecked(this)"/>
</xsl:when>
<xsl:otherwise>
<input type="checkbox" name="Detail3.{normalize-space($dbID)}.selectbox" id="Detail3.{normalize-space($dbID)}.selectbox" value="false" onClick="setChecked(this)"/>
</xsl:otherwise>
</xsl:choose>
</td> </td>
<td style="width:90px"> <td style="width:90px">
<xsl:value-of select="item_parnt" /> <xsl:value-of select="item_parnt" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment