Search
4218 results 1481-1490
Forum
- 13th Mar 2017How to sort table by dd/mm/yyyyleadtable').dataTable({ language: { url: '//cdn.datatables.net/plug-ins/1.10.12/i18n/Hebrew.json' }, columnDefs: [{ type: 'extract-date', targets: [0]
- 9th Mar 2017Editor Button on top of formselect": false, "autoWidth": false, "columnDefs": [ { "visible": false, "targets": [0,
- 9th Mar 2017How to sort by USA date (mm/dd/yyyy)?document).ready(function () { var table = $('#gridProjectView').DataTable({ columnDefs: [ { type: 'date-uk', targets: 3
- 8th Mar 2017I cannot get editor populated with row datadata: tb_contents.tb_data, autoWidth: false, columnDefs: [{ 'targets': -1, 'width': '6%',
- 3rd Mar 2017Bootstrap Toggle pluginremoved the createdCell in columnDefs and changed the rowCallback
- 28th Feb 2017Can you disable sorting on the datatable but also have a default ordering for the first column?This config will disable the ability of the user to sort any column: columnDefs: [ { orderable: false, targets: '_all' } ] To allow Datatables to initially sort the data you need to remove bSort: false, from the config. Kevin
- 28th Feb 2017How do i make a datatables editor view show the lookup labels instead of valuesdom: 'Bfrtip', ajax: 'js/DataTablesEditor/php/table.trailer.php', columnDefs: [ { targets: [ 0 ], visible:false }, { targets:
- 27th Feb 2017Error to show detailstableCreate(){ var dataTableInstance = $('#taskInfoTable').DataTable( { "columnDefs": [ { className: "details-control", "targets": [ 0
- 27th Feb 2017Is there a way to disable the default warnings?type": "POST" }, stateSave: true, columnDefs: [{ visible: false, targets: 0}],
- 23rd Feb 2017Trying to create a yadcf filter for a column with imagesSee updated jsfiddle. I added alt='black' or whatever the appropriate color is to each img. Added the alt-string plugin and type: 'alt-string', to the columnDefs. Kevin