Hello,
I'm having an issue with showing/hiding columns on the client-side. When i hide a column, the grouping row is not resizing. Looking at the source, it appears that the grouping column colspan is not changing when columns are shown or hidden. Is there an easy (or any) way to correct this?
Thanks,
Matt
I'm having an issue with showing/hiding columns on the client-side. When i hide a column, the grouping row is not resizing. Looking at the source, it appears that the grouping column colspan is not changing when columns are shown or hidden. Is there an easy (or any) way to correct this?
Thanks,
Matt
| function chkChange(chk) { |
| var grid = $find("<%= grid.ClientID %>"); |
| if (chk.checked) { |
| kgDataSeries.get_masterTableView().showColumn(5); |
| } |
| else { |
| kgDataSeries.get_masterTableView().hideColumn(5); |
| } |
| kgDataSeries.repaint(); |
| } |