Search
2965 results 481-490
Forum
- 18th Sep 2013fnFooterCallback only called once when multiple footer rows existI found a workaround: http://datatables.net/forums/discussion/5861/using-fnheadercallback-with-multiple-header-rows/p1 But I'd still like to know if fnFooterCallback is supposed to be called only once for the first row in the tfoot, or for each row. DataTables-1.9.1 Regards, Robert
- 29th Aug 2013Summary footer rowAny suggestion?
- 5th Feb 2013How to prevent aoColumnDefs applying to header and footer in DataTables?Great! It worked. BLSully , thank you very much!
- 28th Dec 2012Toggle Footer using a ButtonSure - just put it in your HTML using regular DOM or jQuery methods and attach an event handler as needed. It isn't a feature of DataTables that, so you'd need to add your own script to do it. Allan
- 2nd Nov 2012Footer filter has empty dataOh my - sorry. I saw bServerSide and just assumed it would be true (since it is false by default there is not need to specify it). So yes, you are using client-side processing and fnInitComplete is the way to go :-) Allan
- 15th Oct 2012Referencing JSON object for footer callbackanyone have any thoughts on this?
- 27th Sep 2012small bug dataTables 1.9.4 footer using jQuery UIAh - in the old days there wasn't a ui-widget-footer in the jQuery UI files. I'll defiantly look at adding this in. Thanks! Allan
- 12th Jun 2012Sum for each column of filtered (not paginated) rows in the footerI would like to bump this up. I am trying to perform the same thing. I can get total of all rows and paged rows. But I would like to have a total for filtered rows. Seems like I could have a condition to test if the row is filtered or not and if the row is visible (in the filter) add it to the total, otherwise skip. I just do not know what the property and or condition may be. Thanks in advance!
- 28th Oct 2011move filter and dropdown to footerThis works perfect:) Thanks for the help and quick reply. /Birger
- 13th Jul 2011Custom footer text entries based on checked records.I have solved the first question to hide a header content when there is a content in the filter. [code] $('#gridDocuments_filter input').keyup(function () { if ($(this).val().length > 0) { $('#check_all1').attr('style', 'visibility:hidden;'); document.getElementById('lblCheckAll1').innerHTML = ""; } else { $('#check_all1').attr('style', 'visibility:visible;'); document.getElementById('lblCheckAll1').innerHTML = "Select all "; } }); [/code] Thanks, Ram