Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration with the DataTables Key Table #10

Closed
GoogleCodeExporter opened this issue Jun 13, 2015 · 1 comment
Closed

Integration with the DataTables Key Table #10

GoogleCodeExporter opened this issue Jun 13, 2015 · 1 comment

Comments

@GoogleCodeExporter
Copy link


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

@GoogleCodeExporter
Copy link
Author

Original comment by joc...@gmail.com on 30 Sep 2011 at 9:45

  • Changed state: WontFix

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant