Search
10720 results 3621-3630
Forum
- 1st Sep 2021disable Datatable fieldNo you are right. The patch isn't quite right - it works correctly when the DataTable already exists, but if you call it immediately, after initialisation, then no it doesn't work. Let me get back to you on this one. Allan
- 30th Aug 2021SearchBuilder with Absolute SortingHi @trongart , The columns.searchBuilderType initialisation option should be able
- 26th Aug 2021Strange behaviorwhy it appears blank initially). So without these three
- 26th Aug 2021Another Requested unknown parameter '0' for row 0, column 0 Problemthe $('#employee-table').DataTable(); is actually initializing Datatables. Kevin
- 25th Aug 2021SearchPanes: hide 'Show All/Collapse All' buttonswithout affecting every single initialisation. $.fn.dataTable.SearchPanes.defaults.collapse = false; $.fn.dataTable.SearchPane.defaults.collapse = false;
- 23rd Aug 2021Using the upload functionality but it is inserting two records in the DBYep, that shouldn't be the case, it should create a new record on upload, and nothing more. Please can you post your Editor initialisation code, and your server script if it's been modified, Colin
- 22nd Aug 2021how to reverse column on exporting dataYou can use this.api() to access the API within initComplete. See this exmaple. It would look like this this.api().columns().count(). Kevin
- 20th Aug 2021Inline Editor closing when dragging to select text in input or textarea.initiating editor like so $('#fees').on('click', 'tbody td div.editable', function (e) { editor.inline(table.cell($(this).closest('td')).index(), { onBlur: 'submit', submit: 'changed', }); });
- 20th Aug 2021I can't auto focus the first cell (by focus: ':eq(0)' )Working solution is: let table = $(TABLE_ID).DataTable({ ... initComplete: function () { table.cell(':eq(0)').focus(); } ... }); But, why keys.focus: ':eq(0)' didn't work?
- 19th Aug 2021Cells are not activated in editorI suspect it's because you've got "paterno" with lowercase in the Editor definition - looking at the DataTables initialisation it looks like all your fields should be capitalised. Could you look at that first, please, Colin