Custom CSS class that should be added to the th
tag(s) of this column in the table header
To set this on the td
tag of a html table use the attribute header-class
or data-header-class
The ISelectOption
s that can be used in a html filter template for this colums.
The definition of 0 or more html filter templates that should be rendered for this column in the table header
Supplies the ISelectOption
s that can be used in a html filter template for this colums.
At the creation of the NgTableParams
this field will be called and the result then assigned
to the data
field of this column.
The name of the data row field that will be used to group on, or false when this column does not support grouping
The url of a custom html template that should be used to render a table header for this column
To set this on the td
tag for a html table use the attribute header
or data-header
The text that should be used as a tooltip for this column in the table header
The index position of this column within the $columns
container array
Determines whether this column should be displayed in the table
To set this on the td
tag for a html table use the attribute ng-if
The name of the data row field that will be used to sort on, or false when this column does not support sorting
The title of this column that should be displayed in the table header
An alternate column title. Typically this can be used for responsive table layouts where the titleAlt should be used for small screen sizes
Generated using TypeDoc
The definition of the column within a ngTable. When using
ng-table
directive a column definition will be parsed from eachtd
tag found in thetr
data row tag.<tr> <td data-title="'Name of User'" filter="{ username: 'text'}" sortable="'username'" /> <td data-title="'Age of User'" filter="{ age: 'number'}" sortable="'age'" /> </tr>