Gautam
Gautam

Reputation: 1740

Scrollable resizeable table with fixed headers

I am creating a table at runtime using jQuery. The table comes from JSON data. The issue is that I need to provide a fixed header to the table so that when I scroll it the header should not move. I know I can create 2 divs one for header only and other for table content. I can't do this since I need the columns to be resizable also. Is there any jQuery plugin or code available to do the same?

Upvotes: 0

Views: 2119

Answers (1)

Amar
Amar

Reputation: 1936

Take a look at the jqFAQ.com link, this will help you to create table with fixed headers and resizeable columns.

Upvotes: 4

Related Questions