Search
-
Editor and Autofill error on pages after 1
by msand01 ·dtTable = $("#EditorTable").DataTable({ data: items, scrollX: "100%", scrollY: 650, lengthMenu: [30, 50, 100], pageLength: 100, scro -
scan column and set values
by kthorngren ·https://editor.datatables.net/manual/events#Edit -
Editor Template
by Mike Thomson ·(function ($) { $(document).ready(function () { var editor = new $.fn.dataTable.Editor({ ajax: 'php/table.units.php', table: '#units', template: "#editorTemplate", -
Editor Template
by Mike Thomson ·var editor = new $.fn.dataTable.Editor({ ajax: 'php/table.units.php', table: '#units', template: "#editorTemplate", fields: [ { label: "code:&q -
Editor.remove sends empty ajax request
by Rudi_Schloesser ·], }); // New record $("#editor_create").on("click", function (e) { e.preventDefault(); monEditor.field("src_id").update(loadSources( -
A new datatable is created inside the old one when doing a search through JSON
by Thore ·$(document.body).on('click', '.editPost', function (evt) { evt.preventDefault(); var modal = $('#editPost').modal(); modal .find('.modal-body') .load($(this).attr('href'), -
image thumbnail not refreshing on ajax.reload
by crush123 ·$('#EditImage').on('hidden.bs.modal', function () { console.log('start'); $('#example').DataTable().ajax.reload( null, false ); console.log('end'); }) -
multiple click events on datatable
by jbblake ·$('#editDetails tbody').off('click').on('click', 'td' ,'tr' , function () { -
multiple click events on datatable
by jbblake ·$('#editDetails tbody').on('click', 'td' ,'tr' , function () { console.log("Single click"); console.log(this); //error here if previous table has zero rows va -
Creating custom search on jquery datatables
by horaccie ·var table = $('#editable-usage').DataTable(); table.columns().every(function() { var that = this; $('#editable-usage_filter input').on('keyup change', function() { if (that.search() == -
Trying to Load JSON on DataTable
by kayro2222 ·}); $("#dt_basic tbody #editChamado").hover(function () { $("#dt_basic tbody tr td #editChamado").tooltip(); }); -
Custom Multi-Edit Button
by TooManyTables ·$('#editSelectedButton').on('click', function(){ e.preventDefault(); area_loan_editor.edit(area_loan_table.rows('.selected'), { title: '<h3>Edit loan< -
Export everything if no items are selected?
by garymh ·dt, button, config ) { $('#edit_multiple_form').submit(); } }, { extend: 'colvis', -
Pass Paramters
by xerk1 ·#EDIT -
Parameters Get need help
by Cdya ·#EDIT -
Error when i set where id
by xerk1 ·#EDIT -
.NET: Record vanishes from table after checkbox cell toggled; must be refreshed.
by rdm ·$('#edittable').DataTable({ /* -- more code -- */ ajax: { url: "@Url.Action("GetContentList")", data: { campus: "@Model.Campus" -
.NET: Record vanishes from table after checkbox cell toggled; must be refreshed.
by rdm ·rowCallback: function(row, data) { // Set the checked state of the checkbox in the table $('input.editor-active', row).prop( 'checked', data.Active === 1 ); } $('#edittable').on('change', -
.NET: Record vanishes from table after checkbox cell toggled; must be refreshed.
by kthorngren ·https://editor.datatables.net/manual/server#Edit -
.NET: Record vanishes from table after checkbox cell toggled; must be refreshed.
by rdm ·$('#edittable').on('change', 'input.editor-active', function() { editor.edit($(this).closest('tr'), false) .set('Active', $(this).prop('checked') ? 1 : 0).subm