Ng-table: header-class is not working any more

Created on 25 Apr 2015  ·  3Comments  ·  Source: esvit/ng-table

Coming from a 3.X to last version

<td header-class="ooooooooooooooooooo" data-title="'Name'">
                {{user.name}}
</td>

header-class is not applied any more

Most helpful comment

Found how it works now with 5.X, have to put class between simple quotes

Example :

<table ng-table="tableParams" class="table ng-table-responsive">
        <tr ng-repeat="user in $data">
            <td sortable="'name'" header-class="'hdr'" title="'Name'">
                {{user.name}}
            </td>
            <td data-title="'Age'">
                {{user.age}}
            </td>
        </tr>
    </table>

For dynamic table use a 'class' attribute, as example below

var usernameCol = {
      title: 'Name',
      titleAlt: 'Name',
      'class': 'hdr',
      sortable: 'name',
      filter: { name: 'select' },
      filterData: names,
      show: true,
      field: 'name'
    };

All 3 comments

Found how it works now with 5.X, have to put class between simple quotes

Example :

<table ng-table="tableParams" class="table ng-table-responsive">
        <tr ng-repeat="user in $data">
            <td sortable="'name'" header-class="'hdr'" title="'Name'">
                {{user.name}}
            </td>
            <td data-title="'Age'">
                {{user.age}}
            </td>
        </tr>
    </table>

For dynamic table use a 'class' attribute, as example below

var usernameCol = {
      title: 'Name',
      titleAlt: 'Name',
      'class': 'hdr',
      sortable: 'name',
      filter: { name: 'select' },
      filterData: names,
      show: true,
      field: 'name'
    };

Thanks for taking the time to post the answer to your own question

@jlebleu You save my day, thx

Was this page helpful?
0 / 5 - 0 ratings

Related issues

faceleg picture faceleg  ·  11Comments

Nagendra1402 picture Nagendra1402  ·  3Comments

richtmat picture richtmat  ·  7Comments

andreicristianpetcu picture andreicristianpetcu  ·  6Comments

yujiayinshi picture yujiayinshi  ·  4Comments