Search
2927 results 1211-1220
Forum
- 9th Feb 2020Using editor where each cell has its own primary keyinitEdit is probably the event you want here. The alternative would be to not use KeyTable's automatic Editor integration, but rather call inline() yourself when the key event is triggered. Allan
- 7th Feb 2020Changing field type editor for specific rows/cellsKeyTable to automatically trigger inline editing instead of using
- 2nd Feb 2020put ajax data inside an input in DataTableUse editor inline editing: https://editor.datatables.net/reference/api/inline() editor has libraries for PHP, node.js and .net as well. I use it with PHP and MySQL.
- 31st Jan 2020Editable datatable not triggering blur event on changing value to other value after first updateYou can force a submission, with submit: 'all' in the form-options, giving you something like: var editor = new $.fn.dataTable.Editor({ ajax: $table.data('editUrl'), table: '#myTable’, fields:myFieldArray, formOptions: { inline: { onBlur: 'submit', submit: 'all' } } }); Colin
- 31st Jan 2020Definable button on a row ?Hi Kevin Thanks for getting back to me, I've solved the issue by doing this : // Activate an inline edit on click of a table cell $('#example').on('click', 'tbody td:not(:first-child) td:not(:nth-child(2))', function (e) { editor.inline(this); });
- 29th Jan 2020CSV Import Not loading field dataresults.data, results.meta.fields); } } }); } }] }); // Activate an inline edit on click of
- 24th Jan 2020Why are the data in the columns not formatted properly?you are using both inline ("style" tags in HTML)
- 15th Jan 2020Does select overrule disabled buttons?to shut down for inline edit and check-boxes. I
- 14th Jan 2020Use custom form without popupload * Table displayed * Click inline edit to hide table
- 8th Jan 2020Editor Dependent is not Synchronous with Submissionor are you using inline editing or something else?