aspose file tools
The moose likes HTML, CSS and JavaScript and the fly likes Dynamic table generation in jsp Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "Dynamic table generation in jsp" Watch "Dynamic table generation in jsp" New topic
Author

Dynamic table generation in jsp

Soumya Sharma
Greenhorn

Joined: Oct 07, 2003
Posts: 2
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 .
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56554
    
  14

Not really a JSP question. More client-side formatting, so I'm shuffling this off to HTML/Javascript.
bear


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Eric Pascarello
author
Rancher

Joined: Nov 08, 2001
Posts: 15362
    
    6
can you show the generated table html so I can see what is happening with the code that might be causing it
Soumya Sharma
Greenhorn

Joined: Oct 07, 2003
Posts: 2
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 agree. Here's the link: http://aspose.com/file-tools
 
subject: Dynamic table generation in jsp
 
Similar Threads
Tricky form problem glad for any ideas or tell me its not possible
Why will IE not render properly?
JTable
scrolling the rows in a table..
JSF dynmaic columns generation