In a Dynamic HTML table, need to change the row value if the user change th
843835Aug 16 2002 — edited Aug 16 2002I created a dynamic table with different number of rows and the cells
have to be editable. If the user change the value in a cell(say Row1 and column1) the value in the Row1 and column2 should change to "M". This has to change on fly. How can I do that? Please help me.
<tr>
<td width="2pixels"><input type="text" name="txtID" id="txtID" value=<%=i%>> </td>
<td width = "66pixels"><input type="text" name="txtPrimary" id="txtPrimary" style="BORDER-BOTTOM-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none" onChange=UpdateManual()
value = "<%=results.getString("USERNAME")%>" ></td>
<td width = "66pixels"><input type="text" name="txtM" id="txtM" disabled style="BORDER-BOTTOM-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none"
></td>
Thanking you in Anticipation,
Rashmi.