projects/netgrif-components-core/src/lib/header/models/user-changes/sort-change-description.ts
Definition of emitted data when user changes sort mode on column
Properties |
| columnType |
columnType:
|
Type : HeaderColumnType
|
| fieldIdentifier |
fieldIdentifier:
|
Type : string
|
| fieldType |
fieldType:
|
Type : string
|
| petriNetIdentifier |
petriNetIdentifier:
|
Type : string
|
| Optional |
| sortDirection |
sortDirection:
|
Type : SortDirection
|
import {HeaderColumnType} from '../header-column';
import {SortDirection} from '@angular/material/sort';
import {ColumnHeaderChange} from './column-header-change';
/**
* Definition of emitted data when user changes sort mode on column
*/
export interface SortChangeDescription extends ColumnHeaderChange {
fieldIdentifier: string;
sortDirection: SortDirection;
columnType: HeaderColumnType;
fieldType: string;
petriNetIdentifier?: string;
}