Search
11152 results 2871-2880
Forum
- 18th Mar 2017Support for tables with HTML5 progress barwill not allow for sort on that column. With
- 16th Mar 2017Numeric sorting with inchesa decimal number for sorting purposes and still display
- 15th Mar 2017Sorting data DD/MM/YYYYYou can set the initial sort order with order. Kevin
- 13th Mar 2017Autocomplete selectAha, name: 'fault_type_process_type.fault_id', The update is now working! Just need to sort the description when Editor loads. Should this happen automatically, or do I need to manually set the initial value for Select2? Mick
- 9th Mar 2017overlapping arrows on column sortingshowing correctly. The currently sorted column shows one arrow representing the sort direction. Other columns show
- 9th Mar 2017Change orderData order for multi columns.https://www.datatables.net/examples/basic_init/multi_col_sort.html Is this what you're looking for? You can basically make it target multiple columns at the same time when looking at an initial sort.
- 8th Mar 2017Is it possible to add a dropdown filter box at the top of the data table?that allow you to sort ascending or descending. Then
- 8th Mar 2017Implement excel style edit and auto update using ajax.reload() in a drawCallbackyou do yourself? I'm sort of dabbling in several
- 6th Mar 2017grouping doesn't workyou should see some sort of error in the
- 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