Search
-
Adding button to table footer
by spconway ·var table = $("#myTable").DataTable({ "bJQueryUI" = true }); -
Using DataTables 1.10.5 - Cannot filter exported data
by mtrayn01 ·var table = $('#mytable').DataTable( { dom: 'TCRlfrtip', stateSave: true, tableTools: { "sSwfPath": "DataTables-1.10.5/extensions/TableTools/ -
disallow searching on hidden columns
by tonycarreon ·$("#mytable").dataTable({ -
disallow searching on hidden columns
by tonycarreon ·var tbl = $("#mytable").DataTable(); -
on click not working after upgrade from datatables 1.9.4 to 1.10.4
by allan ·$('#mylist').on( 'click', 'tbody .btn', function () { ... } ); -
on click not working after upgrade from datatables 1.9.4 to 1.10.4
by David Grigglestone ·I have a column definition in #mylist datatable thus: -
Does not count all rows with fnGetNodes() in pagination
by anjibman ·var myTable = $jq11('#myTable').dataTable({ "ajax": someUrl, "aoColumnDefs": [ { "bSortable": false, "aTargets": [0, 6, 7] } -
One AJAX call for all tables, but getting error 4
by allan ·$('#myTable').DataTable( { data: json.data, columns: json.columns } ); -
Single AJAX call for all tables
by jonmrich ·``` $("#my_table").DataTable({ "data":[all_data] , "paging": true, "sDom": '<"top">t<" -
Add "data-title" to every <td>
by ierpe ·//add data-title to every $('table#my_table thead tr th').each(function(index,element){ index += 1; $('tr td:nth-child('+index+')').attr('data-title',$(this).attr('data-title')); }); -
Why does the error function option not work as described?
by Furburger ·Matters <table id="myTable" class="display" role="grid" style="border-spacing: 0px; width: 100%;"> </table> $.fn.dataTable.ext.errMode = -
Cross plugins communication?
by allan ·For example, consider: $('#myId') !== $('#myId'). They both point to the same element, but they are not the same instance! -
Search - OR vs AND
by ricktig65 ·$(document).ready(function() { var mydatatable = $('#mydatatable').dataTable( { "ajax": "php/fetchopentasksbyuseridjson.php", "columns": [ { "d -
Use multiple indexes in the same array on server side
by ignignokt ·var table = $('#mytable').DataTable( { columns: [ { data: 0, fnCreatedCell: function (nTd, sData, oData, iRow, iCol) { $(nTd).html("<a rel="nofollo -
Use multiple indexes in the same array on server side
by ignignokt ·var table = $('#mytable').DataTable( { columns: [ { data: 0, fnCreatedCell: function (nTd, sData, oData, iRow, iCol) { $(nTd).html("<a rel="nofollo -
fnCallback not able to render Server Side DataTable
by preetamchauhan ·$("#MyTable").DataTable({ -
Colspan Hack
by rdueck ·// Initialization var myTable = $('#myTable').dataTable({ ... }); new $.fn.dataTable.FixedColumns (myTable, {leftColumns:1}); // The colspan workaround - move the footer back into the scrollable body -
DataTables Returns Incorrect Results
by fukie ·load DT. $(document).ready(function() { $('#myexample').dataTable( { "order": [[ 0, "desc" ]], "iDisplayLength": 25, "bProces -
Searching, Sorting slow with datatable 1.10.4
by amitsingh ·myTable = $('#myTable').DataTable({ -
Disable Bubble Editing
by allan ·$('#myTable').on( 'click', 'tbody td', function () { if ( table.cell( this ).data() !== null ) { editor.bubble( this ); } } );