Hi All,
I have implemented a form for user selection which has a table as follows.

Now since the table gets populated from webservice returned values. The whole list contains 100 odd entries. And as a result i have the scroll bar on the container.My aim is to limit the height of this table created to about 10-15 rows (as shown) and have an internal scroll bar to view the entire list by scrolling up and down.
I have tried using div etc but without any success.
Here is the snippet of JSP rendering the table:
<tr>
<td colspan="2">
<TABLE BORDER=2 height = 10 >
<%
for ( int i = 0; i < DummyComponent.ptSummary.length; i++ ) {
%>
<TR>
<% if(DummyComponent.ptSummary[i].getID()!= "") {%>
<TD><dmf:radio id = '<%=DummyComponent.ptSummary[i].getID() %>' name = '<%=DummyComponent.ptSummary[i].getID() %>' group = 'radioForProject' onclick = 'onRadioSelected'/></TD>
<TD><%=DummyComponent.ptSummary[i].getID() %></TD>
<TD><%=DummyComponent.ptSummary[i].getDescription() %></TD>
<%} %>
</TR>
<%
}
%>
</TABLE></td>
</tr>
Could you please guide me to reach my solution.
Thanks & Regards
Vishnu S