In Rails 3.1 what is the recommended gem to integrate with DataTables ?
|
I'm using the Put this line in your gemfile:
and run:
Also, make sure to put this line in your application.rb:
Add this to your application.js
And this one if you are using bootstrap:
Add this to your application.css:
Or this one if you are using bootstrap:
And if you are using bootstrap add this to your js.coffee file for your controller you are using datatables in: If you are using fluid containers:
If you are using fixed width containers:
|
||||
|
|
|
In Ryan Bates' RailsCast on the topic (http://railscasts.com/episodes/340-datatables) he uses jquery-datatables-rails (https://github.com/rweng/jquery-datatables-rails) |
|||
|
|
|
I haven't used it myself, but this is one that is available: https://github.com/gryphon/simple_datatables . |
|||||
|
|
The following gem link may be relevant: https://github.com/artellectual/rails-datatables This gem is a fork of the simple_datatables gem (mentioned by Allan) but it also supports pagination with kaminari and searching table data with ajax using the meta search gem. |
|||
|
|