Search
3647 results 321-330
Forum
- 6th Jul 2020Padding for cells in the export PDF secctionWe'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
- 25th Jun 2020I Have dropdown in table cells, how to add dorpdown value to a custom filter paneThanks
- 24th Jun 2020Excel export cells with colorThe best way to do that would be to modify exportOptions, modifying rows to have a function for the row-selector - something similar to this which is modifying columns, Colin
- 23rd Apr 2020Data Sorting removes conditional formatting of table cells.You can disable the sorting column color classes in your DT initialization: // Disable the classes sorting_1, sorting_2 and sorting_3 orderClasses: false,
- 8th Apr 2020Expandable cellsThis thread should help, it's asking the same thing. Cheers, Colin
- 7th Mar 2020RowGroup with custom rendered cellswhy do you suggest to use dt.column($elm.index() + ':visible').index() instead of dt.column.index('fromVisible', $elm.index())? Either works and they seem to be equal in the amount of code needed to get the real index. Just thought I would highlight it as another option. Kevin
- 17th Feb 2020Change background color of first cells of rowsWonderful @kthorngren Thank you very much <3 <3 <3 <3
- 10th Feb 2020Using Server Side Processing, how do I customize the cell's output?You can use columns.render on the client for that. Colin
- 25th Jan 2020Looking for a way to improve performance when updating many cells oftenThanks, yes that's what I ended up doing and it works really well. I still had the problem but I traced it to another setInterval() task that was running every 5 seconds and doing a similar loop through all 300-odd rows! It was blocking the counter update task for a few seconds every 5 seconds, making the countdown slow to update. So once I fixed that too with the same approach, it's all good now.
- 21st Oct 2019Update DataTables' internal data when changing a cell's contentYes that works. Sorry to trouble you!