Building a table where the user can choose to hide some columns (month - or the indiviual series for that each month). Is it possible to use ng-show with a colgroup or col tag - so I don't need to add the ngshow to every cell? Can't seem to get it working...
<colgroup ng-repeat="mth in months" span="2" ng-show="mth.checked">
<col ng-show="headerOptions[0].selected" />
<col ng-show="headerOptions[1].selected" />
</colgroup>