I configured Gridjs for datatables
is there any solution/ option to show/hide column for the final user and also reorder the columns?
Thanks
Bye
I configured Gridjs for datatables
is there any solution/ option to show/hide column for the final user and also reorder the columns?
Thanks
Bye
I was able to hide columns by adding something along these lines in my CSS.
[data-column-id="DatabaseID"] {
display: none !important;
}
It's a little hacky but it got the job done since I didn't find anything built into gridjs although you can probably add this into the style property of the setup as well.