Search
11152 results 7361-7370
Forum
- 31st Mar 2022Datatable sorting group rowsThanks for your answer
- 24th Nov 2021replacement of sorting iconsYou would need to do something like this SO thread - that should get you going, Colin
- 14th Sep 2021Wrong sorting in combo box from Alt Editor FormThat'll be an issue with alt-editor so you'll need to contact them. With Editor, those labels would be sorted by name - please see the Location column in this example, Colin
- 1st Apr 2021How can we change search pane sorting PNGs to Icons ?You would use orthogonal data - see example here: https://datatables.net/extensions/searchpanes/examples/advanced/renderSalaries.html Colin
- 24th Feb 2021Datatables with control (sorting etc) are not read by NVDA using ctrl+alt+arrow keysHi, I think my original system in the thread still stands. You could disable the tabindex on the table header cells, but a proper fix would probably need to involve me talking to the NVDA developers to understand why ctrl+alt+arrow isn't moving focus away from the header cell when it has a tabindex and what they require to fix it. Do you happen to know any of the NVDA devs? Allan
- 17th Feb 2021DataTables Rows Reorder - Sorting failure when adding same row againThanks, worked perfectly for me! let data = Object.assign({}, this.data()); Best wishes, Kevin.
- 9th Dec 2020DataTable destroy is not clearing the table header sorting elementsThis is how I handled it for now $(document).on('destroy.dt', function (e, settings) { var sortIcon = $(settings.nTable.tHead).find('.DataTables_sort_icon'); sortIcon.unwrap(); sortIcon.remove(); });
- 22nd Nov 2020How to change default sorting order when table has print headerWe're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 30th Sep 2020Sorting columdefs date not workingWe're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 12th Sep 2020How can I display the number of rows displayed, both sorted and not sorted@kthorngren Thanks, that did the trick!