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
source
share