/*========================================================================================= File Name: datatables-keytable.js Description: Keytable Datatable ---------------------------------------------------------------------------------------- Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template Version: 1.0 Author: PIXINVENT Author URL: http://www.themeforest.net/user/pixinvent ==========================================================================================*/ $(document).ready(function() { /************************************ * Basic initialisation * ************************************/ $('.dataex-key-basic').DataTable( { keys: true } ); /********************* * Events * **********************/ var events = $('.dt-events-log'); var tableEvents = $('.dataex-key-events').DataTable( { keys: true } ); tableEvents .on( 'key', function ( e, datatable, key, cell, originalEvent ) { events.prepend( '
Key press: '+key+' for cell '+cell.data()+'
' ); } ) .on( 'key-focus', function ( e, datatable, cell ) { events.prepend( '
Cell focus: '+cell.data()+'
' ); } ) .on( 'key-blur', function ( e, datatable, cell ) { events.prepend( '
Cell blur: '+cell.data()+'
' ); } ) /****************************** * Scrolling table * ******************************/ var tableScrolling = $('.dataex-key-scrolling').DataTable( { scrollY: 300, paging: false, keys: true } ); /*********************************** * Scroller integration * ***********************************/ $('.dataex-key-State').DataTable( { keys: true, stateSave: true } ); /**************************************** * Focus cell custom styling * ****************************************/ $('.dataex-key-customstyling').DataTable( { keys: true } ); } );