ColumnType

Represents a column in the GridType. It is essentially the blueprint to a column object. Contains definitions of properties and methods, relevant to a column

Custom CSS styling, applied to every column calcWidth, minWidthPx, maxWidthPx, minWidth, maxWidth, minWidthPercent, maxWidthPercent, resolvedWidth

calcWidth: string | number | null

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:218

A list containing all the child columns under this column (if any).

children: QueryList<ColumnType>

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:180

Optional collapsible

Section titled "collapsible"

Optional Indicated whether the column can be collapsed. If the value is true, the column can be collapsed It is used in tree grid and for navigation

collapsible?: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:261

Optional collapsibleIndicatorTemplate

Section titled "collapsibleIndicatorTemplate"

The template reference for the collapsible indicator of the column. It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views

collapsibleIndicatorTemplate?: TemplateRef<any>

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:204

Specifies whether the column belongs to a group of columns.

columnGroup: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:269

Represents the type of data for the column: string, number, boolean, currency, date, time, etc.

dataType: GridColumnDataType

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:242

Optional defaultDateTimeFormat

Section titled "defaultDateTimeFormat"

Inherited from: FieldType

Default date/time format for Date/Time fields.

defaultDateTimeFormat?: string

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:157

Optional defaultTimeFormat

Section titled "defaultTimeFormat"

Inherited from: FieldType

Default time format for Date/Time fields.

defaultTimeFormat?: string

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:152

Indicates whether a column can be hidden. If the value is true, the column cannot be hidden

disableHiding: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:281

Indicates whether a column can be pinned. If the value is true, the column cannot be pinned

disablePinning: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:279

Indicated whether the column can be edited. If the value is true, the column can be edited

editable: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:263

Optional editorOptions

Section titled "editorOptions"

Sets properties on the default column editors

editorOptions?: IColumnEditorOptions

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:246

Indicates if the column is currently expanded or collapsed. If the value is true, the column is expanded

expanded: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:312

Inherited from: FieldType

The internal field name, used in expressions and queries.

field: string

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:121

Indicates whether a column can be filtered. If the value is true, the column can be filtered

filterable: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:275

Represents a custom template for filtering It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views

filterCellTemplate: TemplateRef<any>

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:365

The filtering expressions for the column. The type contains properties and methods for filtering: filteringOperands, operator (logic), fieldName, etc.

filteringExpressionsTree: FilteringExpressionsTree

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:300

Inherited from: FieldType

Optional filtering operands that apply to this field.

filters?: IgxFilteringOperand

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:142

Represents the instance of the parent GridType that contains this column.

grid: GridTypeBase

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:175

Indicates whether a column can be put in a group. If the value is true, the column can be put in a group

groupable: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:271

Represents a method with custom grouping comparator to determine the members of the group.

groupingComparer: object

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:359

Optional Represents the header text of the column

header?: string

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:232

Represents custom CSS classes applied to the header element. When added, they take different styling

headerClasses: any

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:206

Represents custom CSS classes applied to the header group. When added, they take different styling

headerGroupClasses: any

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:210

Represents custom CSS styles applied to the header group. When added, they take different styling

headerGroupStyles: GridStyleCSSProperty | null

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:212

Represents custom CSS styles applied to the header element. When added, they take different styling

headerStyles: GridStyleCSSProperty | null

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:208

The template reference for the custom header of the column It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views

headerTemplate: TemplateRef<any>

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:199

Indicates whether a column is currently hidden (not visible). If the value is true, the column is not visible

hidden: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:277

The index of the column within the grid. Includes the hidden columns when counting

index: number

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:237

The template reference for the custom inline editor of the column It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views

inlineEditorTemplate: TemplateRef<any>

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:251

Indicates whether the current column is the first for the grid to be pinned. If the value is false, there are columns, that have been pinned before the current

isFirstPinned: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:353

Indicates whether the current column is the last to be pinned. If the value is false, there are columns, that have been pinned after the current

isLastPinned: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:350

Inherited from: FieldType

Display label for the field.

label?: string

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:116

Represents the hierarchical level of the column in the column layout

level: number

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:320

Optional The immediate parent (right above) column of this column (if any). If there is no parent, that means the current column is the root parent

parent: ColumnType | null

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:344

Indicates if the column is currently pinned. If the value is true, the column is pinned

pinned: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:310

Optional arguments for any pipe applied to the field.

pipeArgs: IColumnPipeArgs

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:345

Specifies whether the column can be resized. If the value is true, the column can be resized

resizable: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:265

Specifies whether the data of the column can be searched. If the value is true, the column data can be searched

searchable: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:267

Indicates if the column can be selected. If the value is true, the column can be selected

selectable: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:317

Indicates if the column is currently selected. If the value is true, the column is selected

selected: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:315

Indicates whether a column can be sorted. If the value is true, the column can be sorted.

sortable: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:273

Indicates whether the search should match results, no matter the case of the letters (upper and lower) If the value is false, the result will depend on the case (example: E will not match e) If the value is true, the result will not depend on the case (example: E will match e)

sortingIgnoreCase: boolean

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:292

The sorting strategy used for sorting this column. The interface contains a method sort that sorts the provided data based on the given sorting expressions

sortStrategy: ISortingStrategy

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:286

The template reference for a summary of the column It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views

summaryTemplate: TemplateRef<any>

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:308

The title of the column, used for accessibility purposes

title: string

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:356

Optional topLevelParent

Section titled "topLevelParent"

Optional The root parent of this column (if any). If there is no root parent, that means the current column is the root parent

topLevelParent?: ColumnType

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:336

The index of the column within the grid. Does not include the hidden columns when counting

visibleIndex: number

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:256

Optional populateVisibleIndexes

Section titled "populateVisibleIndexes"
populateVisibleIndexes?: any

Defined in projects/igniteui-angular/core/src/data-operations/grid-types.ts:380