Commit 946a97a5 authored by wansari's avatar wansari

D14IKAT004 position fixed the header row in table.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97430 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1d5ff84e
......@@ -32,49 +32,52 @@
<body>
<form name="porderWizFormIII" id="porderFormIII" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet">
<div class="mainPage-Container" style="overflow: scroll">
<div id="header" style="width:100%">
<!-- <div id="header" style="width:100%;height:100px">
<div id="headingText">Purchase Wizard Details</div>
</div>
</div>-->
<div class="mainPage-Container" style="height:525px;overflow:scroll;">
<table class="tableClass" id="Details" border="0" cellspacing="1" cellpadding="1" style="width:100%">
<thead class="table-head" style="text-align:center">
<table class="tableClass" id="Details" border="0" cellspacing="1" cellpadding="1">
<thead class="table-head" style="text-align:center;position:fixed">
<tr>
<th class="thClass" nowrap="true">
<th class="thClass" nowrap="true" style="width:20px">
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:90px">
<strong>Item Parent</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:90px">
<strong>Item SKU Code</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:200px">
<strong>Description</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:75px">
<strong>Quantity</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:75px">
<strong>Rate</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:75px">
<strong>Amount</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:75px">
<strong>Order Date</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:88px">
<strong>Delivery Date</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<th class="thClass" nowrap="true" valign="bottom" style="width:94px">
<strong>Supplier Code</strong>
</th>
</tr>
</thead>
<tr>
<td>.</td>
</tr>
<tbody class='table-body fadeInDown'>
<xsl:for-each select="//Detail3">
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
......@@ -112,34 +115,34 @@
<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>
<tr style="text-align:center;">
<td>
<tr style="text-align:center">
<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)"/>
</td>
<td>
<xsl:value-of select="item_parnt"/>
<td style="width:90px">
<xsl:value-of select="item_parnt" />
</td>
<td>
<xsl:value-of select="item_code"/>
<td style="width:100px">
<xsl:value-of select="item_code" />
</td>
<td>
<td style="width:200px">
<xsl:value-of select="descr"/>
</td>
<td>
<td style="width:75px">
<input type="text" class="editInputClass" value="{$quantity}" name="Detail3.{normalize-space($dbID)}.quantity"
onkeypress='return isNumberKey(event)' id="Detail3.{normalize-space($dbID)}.quantity" maxlength="8" style="width:70px;" onchange="changeAmount({$dbID})"/>
onkeypress='return isNumberKey(event)' id="Detail3.{normalize-space($dbID)}.quantity" maxlength="4" style="text-align: right;width:70px;" onkeyup="changeAmount({$dbID})"/>
</td>
<td>
<td style="width:75px">
<!--<xsl:value-of select="rate"/>-->
<input type="text" class="editInputClass" value="{$rate}" name="Detail3.{normalize-space($dbID)}.rate"
onkeypress='return isNumberKey(event)' id="Detail3.{normalize-space($dbID)}.rate" maxlength="8" style="width:70px;" onchange="changeAmount({$dbID})"/>
onkeypress='return isNumberKey(event)' id="Detail3.{normalize-space($dbID)}.rate" maxlength="4" style="text-align: right;width:70px;" onkeyup="changeAmount({$dbID})"/>
</td>
<td>
<input type="text" class="editDisplayClass" ISCHANGED="false" readOnly = "1" value="{$tot_amt}" id="Detail3.{normalize-space($dbID)}.tot_amt" style="width: 75px;" />
<td style="width:75px">
<input type="text" class="editDisplayClass" ISCHANGED="false" readOnly = "1" value="{$tot_amt}" id="Detail3.{normalize-space($dbID)}.tot_amt" style="text-align: right;width: 75px;" />
</td>
<td>
<td style="width:75px">
<xsl:value-of select="ord_date"/>
</td>
<td>
......@@ -232,6 +235,32 @@
</tr>
</table>
<table id="errorActivityTable" class="tableClass" border="0" cellSpacing="2" cellPadding="1" width="98%">
<xsl:for-each select="//error">
<xsl:variable name="message"><xsl:value-of select="message"/></xsl:variable>
<xsl:variable name="description"><xsl:value-of select="description"/></xsl:variable>
<xsl:variable name="type"><xsl:value-of select="type"/></xsl:variable>
<xsl:variable name="dbID"><xsl:value-of select="@domId"/></xsl:variable>
<xsl:variable name="column_name"><xsl:value-of select="@column_name"/></xsl:variable>
<tr>
<xsl:if test="position() = 1">
<td class="td_leftAlign" nowrap="true" valign="bottom" width="20%">
Message : <xsl:value-of select="message"/>
</td>
<td class="td_leftAlign" nowrap="true" valign="bottom" width="40%">
Description : <xsl:value-of select="description"/>
</td>
</xsl:if>
<xsl:if test="$type = 'W'">
<td class="td_leftAlign" nowrap="true" valign="bottom" width="20%">
Override Warnings :
<input type="checkbox" name="forceSave" value="false" onClick="setChecked(this)"/>
</td>
</xsl:if>
</tr>
</xsl:for-each>
</table>
</div>
</form>
</body>
......
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