Search
-
It is possible to have two value in single column datatable?
by mastersuse ·<table id="myTable"> <thead> <tr> <th>Action</th> </tr> </thead> </table> var myTestTable = $('#myTable') -
Page does not open other links (2,3 ...)
by LuccasGaulia ·var table = $('#myTable').DataTable( { dom: 'Bfrtip', processing:true, serverSide:true, ajax:{ "url": "php_action/equipAll.php", "type":"POST" }, autoWidth: tru -
Add extra column and set it's values from another column.render
by Rawland_Hustle ·$('#myTable').DataTable( { "ajax": "https://xxxxxxxxxxxxxx.json", "pageLength": 50, "columns": [ { "data": "F -
Search the table by the first input or the second input
by r_zhang ·$('#mySearchButton').on( 'keyup click', function () { -
SearchPane disappears after trying to click on any filters
by mike_eddie ·$(document).ready( function () { // ********* Data Table ********* var table = $('#myTable').DataTable( { language: { searchPanes: { -
Build a DataTable at runtime
by Karl53 ·tblMine = $('#MY-TABLE').DataTable(); -
SearchPanes and option stateSave: true, refresh data issue
by martinxmueller ·In order to refresh the view, i call $('#mytable-id').DataTable().clear().rows.add().draw(); -
how to fix datatable fitur dor my ajax data?
by hasta ·$(document).ready(function(){ tampil_data_riwayat(); //pemanggilan fungsi tampil barang. $('#myTable').DataTable(); function tampil_data_riwayat(){ -
Eliminate page flashing/redrawing?
by kthorngren ·var table = $('#example').DataTable({ initComplete: function () { var api = this.api(); $('#myDiv').show(); api.columns.adjust(); -
Eliminate page flashing/redrawing?
by TimothyV ·$(document).ready(function () { var table = $('#example').DataTable({ initComplete: function () { var api = this.api(); $('#myDiv').show(); -
Unable to show data from Ajax request
by FM2 ·$('#mytable').DataTable( { "responsive": true, "pageLength" : 10, "processing": true, "serverSide": true, "ajax&quo -
Rendering DataTables and its data
by Rushdi ·" + title + " Forum ?"); $('#myModal').modal('show'); } var DeleteForum = function () { $('#loaderDiv').show(); var ForumId = $('#hiddenForumId').val(); $.ajax({ -
Field Missing For Multiple Rows Editor
by BuiBun ·editor = new $.fn.dataTable.Editor({ table: '#myTable', fields: [{ label: "My Name:", name: "Name" }] }); -
Rendering DataTables and its data
by Rushdi ·var SubmitForm = function (form) { var ForumId = $('#forumId').val(); $.validator.unobtrusive.parse(form) var ajaxConfig = { type: 'POST', url: "/Forum/Add -
Cannot reuse a DataTable
by sfarzoso ·$('#my-modal').on('shown.bs.modal', function () { UserArea.initialize(); }); -
Exporting edited form data
by jkilgus ·d ); } }, table: '#myTable' } ); -
How to apply script to a table
by fhaff ·$(document).ready(function() { $('#myTable').DataTable(); } ); <div id="wrapper"> <nav> <div> <a rel -
Is there a way to delete rows after doing a sort?
by kthorngren ·Sorry, the draw() is causing the problem. Instead of using $('#my-table').on(...) you will want to use one(), for example: -
Datatable json, use only specific key
by mashaprsh ·mytable_1 = $('#mytable_1').DataTable({ 'processing': true, "ajax": { "url": "url_to_my_json", &qu -
Is there a way to delete rows after doing a sort?
by leftfield ·var my_table = $("#my-table").DataTable({ ...all the options... });