| Author: Arunagiri Gunasekaran 07 Oct 2009 | Member Level: Gold | Rating:  Points: 2 |
Hi, overflow: scroll property will work only with the div tag. if you can, try to use div tag with in the tbody tag to fix this issue.
<DIV style="OVERFLOW: auto; HEIGHT: 100px" align="justify">
</DIV>
Hope this will help you in some ways,
ArunG
|
| Author: Sumit Kr Verma 09 Oct 2009 | Member Level: Silver | Rating:  Points: 2 |
hi,
please create a frames for table and use it in you page.
Thanks & Regards
Sumit Kr. Verma
|
| Author: Venkatesh Ellur 26 Oct 2009 | Member Level: Gold | Rating:  Points: 2 |
Hi
I think what you can do is play aorund using the tricks. i.e have a table with header and only one cell for the content whit the col span which is equal to the number of colums in the header then have the division in the content cell. in the division have another table only for the content.
eg:
<table> <tr> <td class="cell1"> </td> <td class="cell2"> </td> <td class="cell3"> </td> </tr> <tr colspan=3> <td> <div overflow=auto> <table> <tr> <td class="cell1"> </td> <td class="cell2"> </td> <td class="cell3"> </td> </tr> </table> </div> </td> </tr>
</table>
THIS POSTING IS PROVIDED WITH NO WARRANTIES, BEWARE OF BUGS IN THE ABOVE CODE; I HAVE ONLY PROVED IT CORRECT AS PER MY KNOWLEDGE, NOT TRIED IT.
Regards -------------------------- Venkatesh Ellur +919886417764 venkatesh.ellur@gmail.com
|