Search
4218 results 4191-4200
Forum
- 10th Oct 2014I have a column which has suffix m in it. Any way to remove m and process data for sorting?Use the columnDefs.targets option to apply it to a specific column, or set of columns. Allan
- 20th May 2014Disable sortingYou want to add "ordering": false to your initialization. See ordering. Example If you only want to disable it for certain columns, see columnDefs.targets.
- 14th May 2014bsorting on two columnsUse the columnDefs.targets option. Allan
- 17th Feb 2022Add data-search to td on ajax calladding it through the columnDefs.createdCell but found through another
- 26th Jul 2018Sort table using certain ordercolumnDefs.push({"type": "num-fmt", "targets": i}); columnDefs.push({ "targets": i, "render": function
- 15th Feb 2018Dynamically detect which column contains long text then do ellipsis on that column.like : $.each(TableColumns,function(id,name){ if(column_name == 'description'){ ColumnDefs.push({ targets: id, render: $.fn.dataTable.render.ellipsis(20)
- 27th Dec 2017How do I scroll to a specific column?It looks like this question has been asked a number of times before, but the discussions are all closed with no response. Please let me know if this is possible. I'm trying to do it in the columnDefs[createdCell...] function.
- 16th Nov 2016ajax.reload not working for meUnknown"; } }}, {"data":"supportID", "autoWidth": true}], "columnDefs":[{"targets": [3], "searchable":false, "sortable": false,
- 20th May 2016Improvement to the columnDef render callbackbeneficial to allow the columnDefs.render callback to return an
- 29th Apr 2016How use filters for hidden columns?say I have this "columnDefs:[{targets: [5,6,7],visible: false,},]" but I