I have a grid that I have added the ColumnMenu to that allows the user to pick which columns they would like to see. I am creating a "Reset" button that will restore the grid to its original state. How do I reshow ALL of the columns that are part of the datasource?
I need to somehow have an "ALL" because this grid is being built dynamically and different users will have different columns so I can't hard code the values in here...
Basically I just need to have something like this...
...
var grid = $('#ListAccountsGrid').data('kendoGrid');
grid.showColumn('ALL or *');
...
Anyone have any ideas?
I need to somehow have an "ALL" because this grid is being built dynamically and different users will have different columns so I can't hard code the values in here...
Basically I just need to have something like this...
...
var grid = $('#ListAccountsGrid').data('kendoGrid');
grid.showColumn('ALL or *');
...
Anyone have any ideas?