Search
-
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 ); } } ); -
scrollx width with scrolly
by allan ·jQuery("#mytable").tabs({ "activate": function(event, ui) { jQuery( jQuery.fn.dataTable.tables( true ) ).DataTable().columns.adjust(); } }); -
Editor 1.4 issues tracking
by nguyenm9 ·$('#mytable').on('click', 'tbody td', function (e) { _editor.inline(this, { submitOnBlur: true }) -
AJAX data change and send to contoller
by LNK ·init : function(){ table = $J('#myTable').DataTable({ "iDisplayLength": 10, "bPaginate":true, "paging": true, -
Add a new row from ajax response (json)
by jentree ·$('#mytable').dataTable({ 'data': mydata, 'columnDefs': [{ 'targets': 0, 'title': '', 'sortable': false, 'class': 'text-center', 'data': functi -
Using national characters (ő, ű) for filtering
by szabozoltan69 ·I could not heal the erroneous working of the SQL scripts in case of o", u" chars even with that COLLATE keyword. But somehow the accent-neutralise works; I substituted $(#myInput) with $(th -
Using national characters (ő, ű) for filtering
by szabozoltan69 ·I tried to use this: http://datatables.net/plug-ins/filtering/type-based/accent-neutralise – but did not succeed. How do I substitute $('#myInput') in the code?