Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Switch from jquery datatables to slickgrid

I am using datatables in my jquery application.Now I want to switch from datatables to slickgrid, because datatables take more time to render if more number of rows are there.So wanted to use some other jquery pluins for tables with rich performance.

Do any one have an examples where conversion from jquery datatables to slickgrid is done.Please help.

like image 225
user1138464 Avatar asked Jan 31 '26 20:01

user1138464


1 Answers

I had the same issue with DataTables in conjunction with Sparklines. I found that by rendering the sparklines as the rows became visible within the fnDrawCallback callback, it performed much better than if I rendered all the sparklines up front.

like image 160
Mitch McBride Avatar answered Feb 02 '26 11:02

Mitch McBride