angular-table
angular-table copied to clipboard
Ability to hide columns with bootstrap's hidden-xs, hidden-sm, etc.
I'm able to hide a column's contents by adding class="hidden-xs hidden-sm" but the header, which is generated using at-title="Name of Column" doesn't get hidden like the column contents do.
Is there a way to hide both the <th> and the <td> for the column while still using at-title to create the table headers?
This is what I'm currently doing, which hides the column contents, but not the column header:
<td at-attribute="transList" class="hidden-xs hidden-sm" at-title="Name of Column">
Is there something like at-class that adds the class to both the header and contents? I tried the following, but it didn't work:
<td at-attribute="transList" at-class="hidden-xs hidden-sm" at-title="Name of Column">