Search
2978 results 2761-2770
Forum
- 14th Aug 2017Align footers of two side-by-side datatablespossibilty to align the footers, so that they are
- 26th Jul 2016How can I use "footerCallback" when I want read data from ajax$('#dataTables-example').DataTable({ "ajax": "demo.txt", "footerCallback": function ( row, data, start, end, display ){ ... } }) It cannt get "data" when read data from Ajax, how can I use this function or other way to solution the problem.
- 14th Oct 2015footerCallback not working for a few columnsSo I have footerCallback working and showing the
- 26th Aug 2015Getting header and footersAny examples of getting header and footers to work when generating a PDF - with page count?
- 30th Mar 2015FooterCallback of null, render:I am using the footerCallback with fields that existed
- 11th Oct 2013Fixed Table Headers / Footers are not properly aligned with columns in Chromethat the fixed headers / footers are not properly aligning
- 25th Feb 2010New ajax call causing multiple headers and footers to appearget multiple headers and footers. the data appears correct,
- 22nd May 2025I use Fly on UI datatable, how do I use the footerCallback functionIt doesn't work that way <div id="datatable-with-export" data-datatable='{ "pageLength": 15, "ordering": false, "scrollY": "470px", "pagingOptions": { "pageBtnClasses": "btn btn-text btn-circle btn-sm" }, "layout": { "top2": "searchPanes", "top1": { "buttons": [ { "extend": "copy", "className": "btn btn-primary btn-outline btn-sm", "text": "Копировать" }, { "extend": "csv", "className": "btn btn-primary btn-outline btn-sm", "text": "CSV" }, { "extend": "excel", "className": "btn btn-primary btn-outline btn-sm", "text": "Excel" } ] } }, "searchPanes": { "controls": true, "layout": "columns-2", "cascadePanes": true, "initCollapsed": true, "i18n": { "collapseMessage": "Скрыть фильтры", "showMessage": "Показать фильтры", "clearMessage": "Сбросить фильтры", "title": "Активные фильтры - %d" } }, "columnDefs": [ { "searchPanes": { "show": true }, "targets": [0] }, { "searchPanes": { "show": true }, "targets": [1] }, { "searchPanes": { "show": false }, "targets": [2] }, { "searchPanes": { "show": false }, "targets": [3] }, { "searchPanes": { "show": false }, "targets": [4] } ] }' <script> window.addEventListener('load', () => { const dataTable = new HSDataTable('#datatable-with-export', { columnDefs: [ { targets: [-1], render: function(data, type, row) { var cleanedData = data.replace(',', '.'); var num = parseFloat(cleanedData).toFixed(2); return isNaN(num) ? '' : num; } } ] }); }); </script>
- 4th Aug 2021Static vs. Dynamic footerCallback IssuesI would say its nearly impossible to debug the non-working code without seeing the problem replicated. Your code has a lot going on and it will take someone else a lot of time to come up to speed to understand your solution. One way to get development help with your solution is to use one of the Datatables support packages. Kevin
- 14th Jul 2021Issue in footerCallback@kthorngren I am super stressed right now.. I cannot get it working. I accidentally deleted the fiddle in the OP and now I can't recreate what I had working, it tells me that rows() is not defined? https://jsfiddle.net/BeerusDev/gm10rqp7/355/