jquerycssjtablejquery-jtable

How add scroll in the jtable body using jQuery?


I have a Jtable as shown bellow: enter image description here

I want to add scrollbar to my JTable body and resize the table height to show only 4 rows in the body using jQuery and CSS. Can someone help me with this.

Thanks


Solution

  • I have achieved by just putting a scrollbar using the inline CSS with my div tag.

    <div style="height:250px; width:100%; overflow-y:scroll" id="ProductDetails"></div></td>
    

    Thanks to all