Search
4182 results 1361-1370
Forum
- 9th Aug 2017Newbie question: Datatables is loaded but options/settings not workingtype="text/javascript" class="init"> $(document).ready(function(){ $('#article-table').DataTable( { columnDefs: [ { targets: [ 6 ], orderData: 5
- 7th Aug 2017Problem sorting formatted numbersI add this to columnDefs { type: 'formatted-num', targets: 5
- 5th Aug 2017Unlimited, neverending bugsapi.columns( 5, {page:'current'} ).data().sum() ); }, columnDefs: [ { "targets": [ 0 ], "visible": false}],
- 3rd Aug 2017How can I disable inline edit of a cell (field) for a subset of rows; but enable edit for the rest?data: planningData, columns: planningHeadings.columnHdrs, columnDefs: [ { "asSorting": [] }, { "createdCell": function (td,
- 1st Aug 2017Using Ajax Datatables with Modals?@allan removed all the css I was using and added: columnDefs: [{ targets: 3, render: function (data, type, row) { return data.substr(0, 25) + "..."; } }], to the code and responsive still stops working
- 1st Aug 2017Javascript AJAX vs AJAX in Datatables.net - Why?data": "Description" }, { "data": "CardId" } ], 'columnDefs': [ { 'targets': [9], 'searchable': false,
- 31st Jul 2017search field big delay whe typing in box for 1000 rowshi tangerine, I tried that and it works to limit the search but doesn't change the "type to search" speed. There was something about using ajax instead? would this speed it up? columnDefs: [{ "searchable": false, "targets": [0,1,5,6,7,8,9,10,11,12,13] }],
- 29th Jul 2017Sortable is not working for me after changing the verioniDisplayLength": 50, "bLengthChange": false, //"columnDefs": [ { orderable: true } ], "bFilter": true,
- 27th Jul 2017Unable to lookup only in first 3 columnsDataTable var table = $('#example').DataTable({ "columnDefs": [ { className: "first", "targets": [ 0
- 24th Jul 2017Can't format last column as currencyGot it - thanks. You need to add targets: -1 to the object you are using in the columnDefs array. I'm slightly surprised DataTables doesn't give a warning about that. I thought it would there - I'll look into that! Allan