Search
11152 results 1161-1170
Forum
- 24th Jan 2018Remove sort icons when table is orderedThe order icon shows based on the programmatically set order, as well as the end user order. You'd need to remove the styling of the icons in the CSS (or override them) to remove them if you don't want them at all. Allan
- 23rd Jan 2018How to sort date time columns || Como ordenar la columna por fecha y diaYes, u have reason. Thank you very much for the information.
- 2nd Jan 2018how can i sort this into mysql and datatableYou have two options: Create the HTML table directly on your page. Get the data for the table via Ajax (in a JSON data format). The manual will help with the DataTables aspects of this. But for general programming advice on how to get data from a database, you'd need to ask on StackOverflow or similar. Allan
- 9th Nov 2017sort after changing a cell's contentOk this is the cottection: function changeName(element) { var jch = $(element); var col2 = jch.parent().parent().find('[name="col2"]'); col2.html('Xantos'); var tbx = $('#tableTopic').DataTable(); var rwx = tbx.row(jch.parent().parent()); rwx.invalidate(); } Thanks :)
- 18th Sep 2017data table sort order not working properlySounds like there is non-numeric data in the column. But without a test case its impossible to say what that would be. Allan
- 22nd Aug 2017Does DataTable sort on value of data or rendered representation?Thank you! The example on Computed values is EXACTLY the use case I was looking for!
- 12th Jul 2017Custom sort for a columnI found a solution using enum (https://www.datatables.net/plug-ins/sorting/enum)
- 23rd Jun 2017How to sort date time columnsHi @kthorngren , Yes you are right, it is getting conflict from natural.js What can be done to have both working together?
- 19th Jun 2017The sort icon does not appear in the column headerPer the forum rules please post a link to a test case showing the issue so we can offer some help. Did you include the correct javascript and css files? https://datatables.net/examples/styling/bootstrap.html
- 21st Apr 2017unable to sort date using data tablesThis plug-in is the best was of doing date and time sorting in DataTables. Allan