angular-table icon indicating copy to clipboard operation
angular-table copied to clipboard

Ability to hide columns with bootstrap's hidden-xs, hidden-sm, etc.

Open tyleryoungblood opened this issue 8 years ago • 0 comments

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">

tyleryoungblood avatar May 03 '17 19:05 tyleryoungblood