Search
-
Problem with dynamic columns/reinitializing table
by doug_a ·var myTable = $("#myTable").DataTable(tableSettings); -
Getting the database ID of the current row via click event
by icdeb ·var table = $('#myTable').DataTable(); $('#myTable').on( 'click', 'tr', function () { var id = table.row( this ).id(); alert( 'Clicked row id '+id ); }); -
FixedColumns not working for header
by hellson ·$('#myTable').DataTable( { paging: false, scrollY: "400px", scrollX: true, select: true, fixedColumns: { leftColumns: 2 }, fixedHeader: { header: -
data tables are taking so much time,and finally displaying nothing for get request
by rameshHoly ·myDbTable = $("#myData").DataTable({ -
Submitting Full Row on Tab Change
by allan ·var editor = new $.fn.Editor( { ajax: "php/staff.php", table: "#myTable", formOptions: { inline: { submit: 'allIfChanged' } } } ); -
Selecting cells only from the 1st column
by tambrams25 ·$("#my_table").DataTable( { "processing" : true, "pageLength": 25, "sDom": 'B<"clear">lf -
Selecting cells only from the 1st column
by tambrams25 ·$("#my_table").DataTable( { -
Print button not showing up
by sudhamallenahalli ·$(document).ready(function () { var table = $('#mytable').DataTable(); new $.fn.dataTable.Buttons(table, { "buttons": [ 'print' ] -
Highlight selected row
by nycos62 ·$('#myDataTable > tbody > tr').each(function () { $(this).removeClass("focusedRow") }); $('#' + RowID).addClass("focusedRow"); -
Need to append the new data in the existing datatable.
by Naresh155 ·$('#myTable').DataTable({ -
Sending multiple values via ajax.data() to $editor->where() end looping through where()
by Capamania ·table = $('#my-table').DataTable( { dom: "Blfrtip", ajax: { url: "/data.php", type: "POST", -
(SOLVED) TableTools.GetInstance does not carry the updated data table?
by jvcunha ·var oTable = $('#myTable').dataTable(); oTable.fnUpdate('200', 1, 10, true); oTable.fnUpdate('230', 1, 11, true); $("td:eq(10)", nRow).html('200'); $("td:eq(11)", nRow).html('230') -
(SOLVED) TableTools.GetInstance does not carry the updated data table?
by jvcunha ·var oTable = $('#myTable').dataTable(); oTable.fnUpdate('200', 1, 10, true); oTable.fnUpdate('230', 1, 11, true); $("td:eq(10)", nRow).html('200'); $("td:eq(11)", nRow).html('230') -
Bootstrap Confirmation only firing events on first datatables page
by allan ·$('#myTable').on( 'click', '.confirmation', function () { $(this).confirmation(options); $(this).confirmation( 'show' ); } ); -
Number and a date range filter for datatable serverside script
by Capamania ·var table = $('#my-table').DataTable( { dom: "Blfrtip", ajax: { url: "/data.php", type: "POST", data: function (d) { -
How to put image in loading
by AshThornton ·$('#myTable').dataTable( { ajax: "//cdn.datatables.net/plug-ins/1.10.9/i18n/Portuguese-Brasil.json", language: { processing: "<img src="{{asset(" alt="image&qu -
How to put image in loading
by AshThornton ·$('#myTable').DataTable({ language: { processing: "<img src="img/loading.gif" alt="image" /> Loading...", } }); -
Export buttons not working
by bfullen ·// DataTable var table = $('#myDataTable').DataTable({ dom: 'Bfrtip', buttons: [ 'copy', 'csv', 'excel', 'pdf', 'print' ], "order": [[1, " -
Numer Sorting issue
by kp161983 ·var oTable = $('#myDataTable').dataTable({ -
After ajax call filter and sort is working but data is not updating.
by rameshkts ·"autoWidth": false, "bFilter": true, "bInfo": true, "bSort": true, "aaSorti