How to make jquery-datatables-rails inline editable?

I use jquery-datatables-rails in one of my applications and display the grid.

To make it editable, I added jquery-datatables-editable-rails to my gemfile.

However, I cannot find a way to make the lines editable.

Any help would be greatly appreciated.

This is how my coffee script file to include a datatable looks like

jQuery ->
 $('#products').dataTable
   sPaginationType: "full_numbers"
   bJQueryUI: true
+5
source share
1 answer

This may be useful:

http://www.datatables.net/forums/discussion/17213/table-editing-with-best-in-place-in-ruby-on-rails

It describes how to make your datatables editable with the best_in_place gem.

+2
source

All Articles