Search
3076 results 111-120
Forum
- 13th Aug 2018DataTable With Oracle 11g - Error ORA-00972: identifier is too longThanks zajc, reply much appreciated.
- 24th Jul 2018Excel/CSV export for long number-like strings (large numbers)It's good to hear that Datatables has finally provided a solution. BTW, I come here to say that after tried a lot of times, I've figured out myself. Edit datatables.js , search for <xf numFmtId="2" fontId="0" fillId="0" borderId="0" applyFont="1" applyFill="1" applyBorder="1" xfId="0" applyNumberFormat="1"/> add a line after that with '<xf numFmtId="49" fontId="0" fillId="0" borderId="0" applyFont="1" applyFill="1" applyBorder="1" xfId="0" applyNumberFormat="1"/>'+ Then scroll up a little and find ,change 67 to 68 Customize code: customize: function( xlsx ) { var sheet = xlsx.xl.worksheets['sheet1.xml']; $('row c[r^="M"]:gt(0)', sheet).attr( 't', 'inlineStr' ); //add :gt(0) to skip column title $('row c[r^="M"]:gt(0)', sheet).attr( 's', '67' ); //apply for new style $('row c[r^="M"]:gt(0)', sheet).append('<is><t xml:space="preserve"></t></is>'); $('row c[r^="M"]:gt(0) > is > t', sheet).each(function () { $(this).text($(this).parent().siblings("v").text()); //paste text to new node $(this).parent().siblings("v").remove(); //remove useless v node }); }
- 19th Jul 2018very long exporting to excelHere is another thread from today discussing the same issue: https://datatables.net/forums/discussion/50940/export-to-excel-very-slow-from-version-1-10-17#latest Kevin
- 27th Jun 2018Long space under dataTable because of high min-height in wrapperHappy to take a look at a test case showing the issue. Allan
- 23rd May 2018Datatable updating large table's CELL data with id is taking long and unresponsiveHi @KushalJain , If you just want to change the data in a row, you can easily do that with something like this: table.row(rowId).data(yourNewData).draw(); Cheers, Colin
- 24th Feb 2018Datatables take too long to loadMake sure your database is optimized, etc. Add sort order to your sql. You are spending time writing out all that html strings only to have DataTables resort it. See if deferRender makes a difference https://datatables.net/reference/option/deferRender Also, might consider using AJAX to get your data instead of creating the html table that DataTables is just going to rewrite.
- 12th Jan 2018How to display (open) a long table at a predetermined row ?Thanks for your effort but this gets too complicated for solving my problem. I will have to figure out some sort of work-around. Probably ugly - but functional I hope. Will remember these suggestions for a future page with a different lay out. Thanks.
- 20th Sep 2017when data value it too long , the number will be changed.Another option, if you aren't actually performing any numerical calculations is to simply have it as a string in your JSON data. Allan
- 7th Aug 2017Sharepoint DataTable with a long load time?It would also be worth looking at the Network panel in your browser's inspector to see what is taking the time. Is it the download of the data, the preparation of the data on the server, or DataTables on the client-side? Allan
- 25th Apr 2017Datatable excel export taking too longNow its working great, thanks.