Search
23432 results 2671-2680
Forum
- 9th Nov 2020How to order multiple columns not alphabetical wayI realized another problem, RowGroup is not compatible with FixedColumn. So, I have to rethink the whole thing.
- 4th Nov 2020Make child row has columns with same width with parent rowsthank you @kthorngren
- 20th Oct 2020Does anyone know how to create columns dynamically and include a render function in the array?Solved :hushed:
- 12th Oct 2020How To Stop Ordering of Columns EntirelyThank you @kthorngren, your question about the HTML5 Attributes led me to look again at the layout page and I found an old script that was trying to sort things. I got rid of it and the problem fixed itself. I inherited this project from another developer, I should've thought of that. Thank you.
- 8th Oct 2020sum all the contents of the columnsThanks !
- 29th Sep 2020Need sum of column into next columns' of every rowso the issue I'm facing is that when I try to add a new row then sumOf(column(Nb)) will be changed too and affect the calculated values in the "Total" column. Sorry, I'm not following. Could you give me step by step instructions on that test case, please, on how to reproduce the problem, Colin
- 20th Sep 2020Switch two column's visibility with one clickYes. Use column().visible(). Just modify the example a bit to specify the column, like this: table.column( 2 ).visible( ! table.column( 2 ).visible() ); table.column( 3 ).visible( ! table.column( 3 ).visible() ); KEvin
- 20th Sep 2020How do I trigger the ajax to server-side call please after hiding/unhiding columns?Ohhh; brilliant! That also solves my column filtering issue. This is what I am now doing: "ajax":{ url : 'YouthMemberAdminListView', data : function (d){ d.ssAccountLevel = sessionStorage.getItem('ssAccountLevel'); d.ssAccountID = sessionStorage.getItem('ssAccountID'); d.ssArchived = sessionStorage.getItem('ssArchived'); d.ssGroupSection = sessionStorage.getItem('ssGroupSection'); d.filterSurname = filterSurname; d.filterFirstName = filterFirstName; d.filterBOB = filterBOB; d.filterGender = filterGender; d.filterNumber = filterNumber; d.filterStart = filterStart; d.filterInvested = filterInvested; d.filterNotBirthday = filterNotBirthday; }, With many thanks and kind regards, Glyn
- 18th Sep 2020How to toggle between hiding rows based on a column's content.There's a lot of mistakes in that fiddle - it's not running, plus you're only adding one column back into the table. Kevin's example from this thread may help - it's hiding rows with black cells. You could modify that for your use case. Colin
- 28th Aug 2020want to compare two columns values bigger blue small redUse createdRow if the data is static or rowCallback if the data can change. The docs have some example code plus a running example here. Kevin