fixthebug2003
Programmer
Hi,
I have a simple HTML table,like this
<table id="itab" width="100%" >
<tr>
<td> EMP NO</td>
<td> EMP NAME </td>
<td> SALARY </td>
<td> NOTES </td>
</tr>
</table>
Now, if the notes becomes long enough, the text wraps, which is fine, and the row height changes, which is also fine for me. The only thing I want is to get the row height using javascript.
something like:
document.all.itab.rows(1).height
if you don't have a height attribute for a row, I get the valus as undefined. If you define a height attribute for the row, it gets only what you have set it to, not the one it got changed to dynamically when the notes wraps up!
fithebug2003
I have a simple HTML table,like this
<table id="itab" width="100%" >
<tr>
<td> EMP NO</td>
<td> EMP NAME </td>
<td> SALARY </td>
<td> NOTES </td>
</tr>
</table>
Now, if the notes becomes long enough, the text wraps, which is fine, and the row height changes, which is also fine for me. The only thing I want is to get the row height using javascript.
something like:
document.all.itab.rows(1).height
if you don't have a height attribute for a row, I get the valus as undefined. If you define a height attribute for the row, it gets only what you have set it to, not the one it got changed to dynamically when the notes wraps up!
fithebug2003