Search
3076 results 81-90
Forum
- 1st Feb 2012fnCreateCookie delete cookie logic is flawed (HTTP 400: Size of request headers is too long)request headers is too long" error. Once this has
- 24th Nov 2011How to add loading image for long tableHI How to add loading image for long tables which has more than 1000 rows of data
- 14th Dec 2010ajax datatable supplied url vars too long(?)from datatables is too long. If I remove one
- 29th Mar 2010Excel & CSV Opening as One Long Rowoutput appears as one long row. Has anyone encountered
- 15th Mar 2010loading time very longmore) loading time is long enough. I saw he
- 4th Sep 2009Cookie Limit? (Long Cookie Fails)code and make the long cookie work? Cheers!
- 11th Jun 2009LONG downtimeto everyone for the long down time that DataTables.net
- 23rd Sep 2025SearchPanes Long Data example doesn't show ellipsisYes, fixed in 2.4.5 (by this commit), although there might still be an issue with cascade. I've yet to check that! Allan
- 30th Jul 2024searchPanes long data : Is the example page working ?Link to test case: Debugger code (debug.datatables.net): Error messages shown: Description of problem: Hi, I was looking for a solution to truncate values in SearchPanes and I found this example on the website but it doesn't seems to work (no ellipsis) https://datatables.net/extensions/searchpanes/examples/advanced/longData.html Is it a bug with my old browser ? Thanks
- 31st Jul 2024solution for exporting long number strings to ExcelDoh! The following is needed to apply the changes per row: customize: function (xlsx) { let sheet = xlsx.xl.worksheets['sheet1.xml']; ['E', 'L', 'R'].forEach(function (value, key) { $('row:gt(0) c[r^="' + value + '"]', sheet).each(function () { let v = $(this).find('v'); if (v.length > 0) { let data = $(this).text(); v.remove(); let inlineString = '<is><t>' + data + '</t></is>'; $(this).removeAttr('s').attr('t', 'inlineStr').append(inlineString); } }); }); },