Looking to create a dynamic table allowing users to hide certain columns. Wondering if it's possible to use ng-show with colgroup or col tags instead of adding ngshow to each cell individually. Struggling to make it work...
<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>