Search
-
dynamic Json populate to Datatable on the fly
by allan ·$('#myTable').DataTable( { columns: json.columns, data: json.data } ); -
display data differently in AJAX table
by mesqueeb ·$('#myTable').DataTable( { ajax: ..., columns: [ { data: 'name' }, { data: 'price' }, { data: 'id' }, ] } ); -
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: -
Submitting Full Row on Tab Change
by allan ·var editor = new $.fn.Editor( { ajax: "php/staff.php", table: "#myTable", formOptions: { inline: { submit: 'allIfChanged' } } } ); -
Print button not showing up
by sudhamallenahalli ·$(document).ready(function () { var table = $('#mytable').DataTable(); new $.fn.dataTable.Buttons(table, { "buttons": [ 'print' ] -
Need to append the new data in the existing datatable.
by Naresh155 ·$('#myTable').DataTable({ -
(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' ); } ); -
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...", } }); -
Editor Create : SQLSTATE[42000]: Syntax error or access violation: 1064 .....
by fc338339 ·editor = new jQuery.fn.dataTable.Editor({ "ajax" : "/modules/mod_aa_editor2/php/cour2.php", "table" : "#myTable2", -
Editor Create : SQLSTATE[42000]: Syntax error or access violation: 1064 .....
by fc338339 ·editor = new jQuery.fn.dataTable.Editor({ "ajax" : "/modules/mod_aa_editor2/php/cour2.php", "table" : "#myTable2", -
Editor Create : SQLSTATE[42000]: Syntax error or access violation: 1064 .....
by fc338339 ·"table" : "#myTable2", "fields": [{ label : "Course:", name : "cl.course_id", ty -
Can I make a colum non editable in table view but editable in record view
by allan ·$('#myTable').on('click', 'tbody td:not(:first-child, :nth-child(3))', function (e) { editor.inline(this); }); -
How I get ID table?
by BelitaColares ·I need to get to ID table example: <table id="#myTable"></table>. -
Search (filter) does not work on some columns
by xwingz ·$('#myTable').DataTable({ scrollY: this._calculateHeight() }); -
How to keep editing window open
by milap ·$('#myTable').DataTable( { buttons: [ { extend: 'create', editor: myEditor, formButtons: [ { label: 'Accept',