Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm using a Vizlib Table and I want to be able to hide a column from view. I can't just remove the column because I am using it to filer what rows sow in the table. I have been searching through all of the available settings and options but can't figure it out. Any ideas anyone?
you can use show column or show/hide column feature. using a condition you can show/hide column
Thanks, I spotted that but didn't know what code I should write for the condition.
you can use an if statement =if(<fieldName> = 100,1,0). you can use any condition here and say the output as 1 or 0. 1 will show the column, 0 will hide the column.
Thank you. I managed to get that working for the basic fields which I wanted to hide.