Search
2978 results 491-500
Forum
- 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
- 19th May 2011Footer issues with TableToolsThank you for the fix Iksela. This is how Iksela solved it: //When using TableTools with DataTables, the flash buttons won't work if the table is hidden at initialisation time. This code solves that. $(function(){ $("#tabs").tabs({ show: function(ui, event) { ttInstances = TableTools.fnGetMasters(); for (i in ttInstances) { if (ttInstances[i].that.fnResizeRequired()) ttInstances[i].that.fnResizeButtons(); } } }); });
- 9th Nov 2010JS Error when paging datatable with footer totalsI am getting the same error when I try and go to the next page or any page.
- 31st Aug 2010Wrong number of pages displayed in the footerthis example helps me a lot, I removed the scrolling functions, and the constant size of columns : 10%, I have on most of my columns separately declared size (those that I want to be same always and the rest of them are just resized ) and it WORKS! my code only for those tabs is too big like 243 lines and there is functionality for [code]$.loadImages, $.ajaxStart(), $.ajaxStop(), and even $.imageScale [/code] if you want i can send you code by email. thanks a lot mate.
- 2nd Mar 2021Need Responsive footer with '+' sign as others' rows, need solution ASap...........Link to test case: Debugger code (debug.datatables.net): Error messages shown: Description of problem:
- 16th Jan 2020it is possible to add a footer to the bottom of the page instead of the table, but only on the lastya he buscado soluciones pero no encuentro requiero ayuda
- 22nd Mar 2018Colspan not working in footer upon pdf export. How to over come this issue ?http://live.datatables.net/wiporaga/1/edit
- 13th Nov 2017print footer, imprimir rodapéBom, gostaria de saber se alguém tem uma solução para o seguinte problema: Estou tentando gerar um somatório de alguns valores da tabela e exibir no tfooter, quando eu tento imprimir o que eu exibir em uma célula do tfooter é replicada em todas as outras, gostaria que exibisse apenas um relatório do datatable na impressão.
- 23rd Jan 2017Page count in footer when exporting DataTable table with pdfmakeGot it! http://code.datatables.net/forums/discussion/35979/pdf-page-numbers
- 3rd Jan 2017How to add sorting to footer?I need to add sorting functionlity which is same as header sorting.Could you help me with that?