Search
-
merge the button and search code
by kthorngren ·See if this thread helps. -
Google Sheet - HTML App Script : Trying to get DataTable to use Individual column searching (select
by TommTFG ·/* # CREATED BY: BPWEBS.COM # URL: https://www.bpwebs.com */ function doGet() { return HtmlService.createTemplateFromFile('Index').evaluate(); } //GET DATA FROM GOOGLE SHEET AND RETURN AS AN AR -
Group Rows in Excel
by colin ·If you're using RowGroup, then the export isn't supported I'm afraid. As the page above states: -
drawCallback with multiple values
by kthorngren ·See if this example from this thread helps. If not please build a test case showing what you have so we can help debug. -
Is there a way to solve the 'out of memory' error?
by sol ·Hi, colin! -
Custom header filter not responsive
by kthorngren ·I think I understand now. Your other test cases didn't include the Responsive extension so I was trying to help with a different issue. See if this thread helps you to remove/show the appropriate s… -
Editor - Serverside. How can I show multiple lines in cell?
by kthorngren ·When exporting the export function uses the display orthogonal data by default. You can use a different orthogonal data as shown in this example. -
Are hidden columns supposed to be included in Excel export?
by lisarush ·Per this discussion: https://datatables.net/forums/discussion/comment/142777/#Comment_142777 -
How to add rowGrouping in existing DataTable
by kthorngren ·Is there a way to bring this "endRender" function to the "table.rowGroup().dataSrc(index);" like this? -
Fixed header + complex header : alignment problem
by kthorngren ·AFAIK FIxedHeader and complex headers are still not supported. See this thread. I believe Allan wants to post DT version 2 by the end of year. -
Nested datatables not being exported into Excel and PDF
by colin ·The export does only work on the data in the table itself. You didn't post fnOpen(), so I can't see what it's doing there, but there are a few forum threads (such as here, here and here) which explai… -
DataTable SearchDelay not working with individual column searching
by kthorngren ·The searchDelay option works only with the global search input. The column search inputs are a custom addition to the table. Datatables knows nothing about these. -
extensions and plugins with version number (API or JSON)
by kthorngren ·Yes, check this thread. -
How to add custom field type plugin with dynamic text fields
by kanwei ·https://datatables.net/forums/discussion/comment/105430/#Comment_105430 -
FixedHeader: How to "fixed/freeze" just the first tr in multiple rows inside thead?
by kthorngren ·According to this thread from March FixedHeader does not support multiple headers. Looking at the Release notes I don't see anything about this being added since March. Sounds like support will be … -
datatable does not preserve line breaks when exporting pdf or excel
by colin ·This example from this thread may help. It's slightly different, spaces are being converted to newlines. If that doesn't help, please can you update my example, or link to your page, so that we can s… -
Tables that mirror each other
by kthorngren ·See if this thread helps get you started. Possibly you can add the use of select and deselect to keep the row selections in sync. -
Filter by columns broke responsive
by kthorngren ·See if this example from this thread helps. It uses the responsive-resize event to hide/show the appropriate columns in the second header. -
How can I make a pdfHtml5 occupy the entire width of the page?
by colin ·This thread should help, it's asking the same thing. -
rows.select,rows.deselect api does not work. Is there an extension or js file that needs to be added
by chita ·$(".selectAll").on( "click", function(e) { if ($(this).is( ":checked" )) { $('#example').rows({page:'current'}).select(); console.log('select'); …