Search
4218 results 1781-1790
Forum
- 16th Jul 2014Override the numeric sorting function in 1.10in your table: $('#myTable').DataTable( { columnDefs: [ { render: function( data, type,
- 15th Jul 2014How to "hardcode" a column while retrieving the other columns with AJAXI finally solved it by adding: "columnDefs": [ { "targets": [ 6 ], "data": null, "defaultContent": 'myFooHardcodedContent' },
- 15th Jul 2014Click on item (icon) in last column and getting access to that row cell valuesvar oMyTable = $('#myTable').dataTable({ "ajax": { }, "columnDefs": [ . . ], "columns": [ . .. ] }); var apiMyTable = $('#myTable').DataTable();
- 3rd Jul 2014Disable sort for last 2 columnsTry var table = $('#example').DataTable({ columnDefs: [ {bSortable: false, targets: [1,2]} ] }); Here is a working example: http://live.datatables.net/nuhigax/1/edit
- 3rd Jul 2014Responsive Datatables with Footable-like BehaviorComanche's plugin does not work quite well if the table has a hidden ( not visible)columns. eg if in ajax-bootstrap3.html example add "columnDefs": [{"targets": [0,1], "visible": false}] how can I fix it? Thank you.
- 22nd Jun 2014Pass data value to ajax request - DataTables 1.10.0POST", "data": {"IDMenu": "1"}, }, "columnDefs": [ { "orderable": false, "targets": [5,6,7,8]
- 18th Jun 2014Orderable false on target 0 (first col) not working until another column is sorted.columns" array rather than "columnDefs". The first column shows
- 6th Jun 2014How do I exchange a value in column with an icon?found to be working. "columnDefs": [ { "targets": 2, "createdCell": function
- 6th Jun 2014How to implement DataTables with knockout observables.data: 'id'}, { data: 'name()' } ], columnDefs: [ { targets: 0, visible: false,
- 28th May 2014Configure Columns Width, Filter button disappearsas the data) while columnDefs can have a variable