Soumya Sharma

Greenhorn
+ Follow
since Oct 07, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Soumya Sharma

Hi ,
This is the generated HTML code of the table which has the problem. In this , when I remove the DIV tag , the application works fine Since I require the table to be scrollable, I need the DIV tag.
Also, please let me know how to attach a view of the screen( if that is of any help to you)?
Regards
Soumya.
<Table border="0" cellspacing="0" align="center" width="400">
<tr><Td width="100%">
<!--START OF THE MAIN TABLE INFORMATION-->
<table border="1" bordercolor = black cellspacing="0" align="CENTER" width="100%" >
<!--START OF THE FIRST ROW HEADINGS-->
<tr height="13" class="TableBody">
<td width="57%" align="center"
bgcolor="#57571E" nowrap >
<font color="white">Attribute Name</font>
</td>
<td width="13%" align="center"
bgcolor="#57571E"><font color="white"> Orderby</font>
</td>
<td width="13%" align="center"
bgcolor="#57571E"><font color="white">SNo</font>
</td>
<td width="15%" align="center"
bgcolor="#57571E"><font color="white"></font>
</td>
</tr>
<tr>
<td colspan="4" width="100%">
<!--START OF THE DATA TABLE-->
<div style="width: 100%; height: 117px; overflow: auto;" >
<TABLE ID="Table_QryId" border="1"
bordercolor=black cellspacing="0"
align="CENTER" width="100%">
<TBODY ID="oTBody">
</TBODY>
</Table>
</td>
</tr>
<!--START OF THE FIRST ROW BUTTON INFORMATIONS-->
</table>
</td>
</tr>
</table>
I am generating a scrollable dynamic table by making a few selections in one listbox . Here whenever , the row count exceeds 9 , unnecessary space is added with each row and the table goes out of control .This problem is with IE 6.0 alone whereas it works fine with IE 5.0 . If anybody has faced a similar problem and found a solution to it ,please do let me know .