I'm using a RadGrid, and I'm able to show and hide columns using client-side script:
mygrid.get_masterTableView().hideColumn(i);
But, when I hide the column, it leaves a blank space where the column was located. Is it possible to have the remaining columns automatically resize and fill the empty space?
If this isn't possible, can I manually resize the remaining columns? I've tried the following script to set the hidden column width to zero, but it doesn't have any affect:
mygrid.get_masterTableView().resizeColumn(i, 0);