I m facing the problem creating the scrollable table(with fixed head) in side the JSP. Please Help. Let me know if you need anything
<div class = "scrollable">
<table class = "table table-condensed table-hover">
<thead>
<tr class= "info">
<th>Prod id</th>
<th>Name </th>
<th>Manufacturer</th>
<th>Quantity</th>
<th>Purchased Price</th>
<th>Selling Price</th>
<th>Weight/Packet</th>
<th>Type</th>
<th>Category</th>
</tr>
</thead>
<tbody >
<% while(rs.next()){ %>
<tr class = "default">
<td><%= rs.getString(1) %></td>
<td><%= rs.getString(2) %> </td>
<td><%= rs.getString(3) %></td>
<td><%= rs.getString(4) %></td>
<td><%= rs.getString(5) %> </td>
<td><%= rs.getString(6) %> </td>
<td><%= rs.getString(7) %> </td>
<td><%= rs.getString(8) %> </td>
<td><%= rs.getString(9) %> </td>
</tr>
</tbody>
<% } %>
</table>
</div>
Where "rs" is the resultset