You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the DataTables site there is a KeyTable plugin that allows you to
navigate through the table in the excel-like manner, and it can be
integrated with jEditable see
http://www.datatables.net/release-datatables/extras/KeyTable/editing.html.
Key Table in the current version cannot be integrated with dataTables Editable.
It would be good to add new initalization parameter oKeyTable so key table can
be associated to the plugin. Proposed method:
1. Add new parameter oKeyTable and pass key table instance to makeEditable call:
var oTable = $('#example').dataTable();
var keys = new KeyTable( {
"table": document.getElementById('example'),
"datatable": oTable
} );
oTable.makeEditable({ oKeyTable: keys});
2. If possible it would be good to have some compact/inline call syntax, e.g.:
$('#example').dataTable().makeEditable({
oKeyTable: new KeyTable( {
"table": document.getElementById('example'),
"datatable": oTable
} );
})
Original issue reported on code.google.com by joc...@gmail.com on 13 May 2011 at 7:01
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
joc...@gmail.com
on 13 May 2011 at 7:01The text was updated successfully, but these errors were encountered: