Search
-
localeCompare can't get it to work
by bpinet ·$(document).ready( function () { $('#myTable').DataTable( { "autoWidth": false, "columns": [ null, null, { "orderable": false }, { -
Tooltip popup based on hidden columns...
by prgcoder ·fnDrawCallback: function( oSettings ) { $('#myTable tbody tr').each( function() { var nTds = $('td', this); var sFullname = $(nTds[0]).text(); var sCol1 = $ -
Tooltip popup based on hidden columns...
by prgcoder ·var table = $('#myTable').DataTable( { dom: 'ftr', paging: false, ajax: { url: "grid", type: & -
Inline edit of same row twice - ID not being sent on the second request
by bkates ·editor = new $.fn.dataTable.Editor( { ajax: /path/to/my/controller table: #myTable idSrc: "id", fields: [ { name: "weekNu -
Which to use DataTable or dataTable?
by allan ·var table = $('#myTable').DataTable( { ... } ); var legacyTable = $('#myTable').dataTable(); -
Refreshing DataTable After Ajax Call
by jrizzi1 ·var table; $(document).ready( function () { table= $('#myTable').DataTable(); table.columns().eq( 0 ).each( function ( colIdx ) { $( 'input', table.column( colIdx ).header() ).on( 'keyup change -
DataTable to Editor and reverse
by EXPERBUY ·$('#myTable').DataTable( { dom: 'T<"clear">lfrtip', tableTools: { "sSwfPath": "swf/copy_csv_xls_pdf.swf", "sRow -
DataTable to Editor and reverse
by EXPERBUY ·$('#myTable').DataTable().destroy(); $('#myTable').removeClass('editor'); $('#myTable').removeClass('DTTT_selectable'); $('#myTable').off( 'click', 'tbody td:not(:first-child)'); -
DataTables Editor onEsc
by allan ·var editor = new $.fn.Editor( { ajax: "php/staff.php", table: "#myTable", formOptions: { main: { onEsc: 'none' } } } ); -
opening/rendering all hidden columns (with repsonsive true) button
by mimhof ·var table = $('#mytable').DataTable(); table.rows().eq(0).each( function ( idx ) { var row = table.row( idx ); if (! row.child.isShown() ) { var -
Unable to perform single row selection with Editor
by pansengtat ·// Inside the JS file to be called by main PHP file $(document).ready(function() { var table = $('#myTable').DataTable({ dom: "Tfrtip", ajax: "php/myTableEditor.php& -
Can i load DataTable as function ?
by headshot9x ·var table; $(document).ready(function() { table=$('#myTable').DataTable({ WHATEVER}); }); -
Colreorder slow on IE
by mikes1280 ·$('#myTable').DataTable().colReorder.order( [array of 200 integers, random order] ) -
DataTable filtering and paging
by kriggs83 ·function showAll(){ var theTable = $('#myTable').dataTable({ "columnDefs":[{"orderable":false, "targets":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -
Bug: Language file not loaded (NetworkError: 405 Method Not Allowed) when type: post on $.ajaxSetup
by marcosdimitrio ·<html> $(document).ready(function() { $.ajaxSetup({ type: "POST" }); $('#mytable').dataTable( { "language": { "url&qu -
How do I prevent Editor from committing changes on Ajax call during presubmit?
by pansengtat ·... // Inside the TableTools option of the $('#myTable').DataTable variable ... sRowSelect: "os", aButtons: [ { sExtends: 'select_single', sButtonClass: 'marg -
DataTables - TypeError preventing sort and filter
by annabananana7 ·$(document).ready(function() { var oTable = $('#myTable').dataTable( { "sDom": 'lrtip', initComplete: function() { var api = this.api(); api.columns('.fi -
Change CSS for specific Table
by allan ·Then you can use simple selectors to target a specific table: $('#myTable_wrapper .dataTables_filter input'). -
Adding a row in the middle of the table
by msand01 ·oTable= $('#myTable').DataTable({ -
(Solved)How to send array of data to server
by jemz ·arrayid = ["039393","03838383","09383883"]; $('#mytable').dataTable({ "ajax": "./getdata.php?id=" + arrayid, "scrollY": &qu