001: # KeyTable
002:
003: KeyTable provides enhanced accessibility and navigation options for DataTables enhanced tables, by allowing Excel like cell navigation on any table. Events (focus, blur, action etc) can be assigned to individual cells, columns, rows or all cells to allow advanced interaction options.. Key features include:
004:
005: * Easy to use spreadsheet like interaction
006: * Fully integrated with DataTables
007: * Wide range of supported events
008:
009:
010: # Installation
011:
012: To use KeyTable, first download DataTables ( http://datatables.net/download ) and place the unzipped KeyTable package into a `extensions` directory in the DataTables package. This will allow the pages in the examples to operate correctly. To see the examples running, open the `examples` directory in your web-browser.
013:
014:
015: # Basic usage
016:
017: KeyTable is initialised using the `C` option that it adds to DataTables' `dom` option. For example:
018:
019: ```js
020: $(document).ready( function () {
021: var table = $('#example').DataTable();
022: new $.fn.dataTable.KeyTable( table );
023: } );
024: ```
025:
026:
027: # Documentation / support
028:
029: * Documentation: http://datatables.net/extensions/keytable/
030: * DataTables support forums: http://datatables.net/forums
031:
032:
033: # GitHub
034:
035: If you fancy getting involved with the development of KeyTable and help make it better, please refer to its GitHub repo: https://github.com/DataTables/KeyTable
036:
037: