Search
3076 results 101-110
Forum
- 17th Dec 2021StateRestore long names cut offApologies - I must have forgotten to save the fiddle when I changed the link!
- 6th Dec 2021How to display a lot of data from db in datatables without long reload?Have you followed the steps in the technical notes linked to in the error? That'll be the place to start. If so, what did you find? Colin
- 25th Jun 2021Hello, I try to use the column.render to create an ellipsis for long content, but nothing happenYep, I need to apply some logic. As in http://live.datatables.net/qoviziju/5/edit?html,js,output I've got a third column for issue. If the column is not empty (row[x].lenth > 1) then I need to render in red (and with a glyphicon ;) ). (I keep in mind the columns.className for other styling I've got in mind !)
- 24th Jun 2021DATATABLE TOO LONG TO LOAD 3.000 LINES - Performance helpThanks, BRO! I try this
- 10th Feb 2021My Server side ajax datatable is taking too long to load why ?Start with thie FAQ about speed optimizations options. If this doesn't help then please provide info about what you have and the troubleshooting steps you've taken to isolate where the delay is. Kevin
- 1st Sep 2020Lower the initialization time for long, scrollable tables@allan Thank you for your comments! I will give it a shot, as I'm currently not using scrollY. In the meantime, I have implemented a custom "column pagination" in which the full data ist stored in a class and a simplified table is destroyed and recreated if further columns are requested. I'm pretty sure, my quick implementation is not ideal, but such a feature (maybe with sth smarter than destroying and recreating) could also be something for your library. Thank you for creating and maintaining DataTables, Nico
- 19th Aug 2020Long text in cell is shown modifiedThis is an HTML question. Please see this thread: https://stackoverflow.com/questions/16834320/using-times-word-in-html-changes-to-%C3%97 Kevin
- 20th Apr 2020How to fix broken responsive from child when i using nowrap and the value in records is long?We'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
- 5th Jun 2019JSON erron when long test is capitalizedThe problem is solve :-) I use method form https://datatables.net/forums/discussion/21242/invalid-json-response-when-adding-some-utf-8-characters **I added this line to the function sql_connect() in spp.class.php before returning the $db object and now it works. $db->exec("set names utf8");**
- 23rd Aug 2018Table taking long time to updateI am using the datatable like below. $(document).ready(function() { $('#example').DataTable( { "orderClasses": false, language: {"sLengthMenu": "Show : MENU Export as :" }, dom: 'lBfrtip', buttons: [ 'csv', 'excel', ], "lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]], } ); $('.dt-button').removeClass().addClass('btn btn-sm'); } );