projects/wms-framework/src/lib/models/controls/HeaderRow.ts
A class representing the Header Row.
Properties |
|
constructor(rowsManager: RowsManager)
|
||||||
Creates a new instance of HeaderRow.
Parameters :
|
Protected _cells |
Type : CellBaseCollectionModel
|
Inherited from
RowBase
|
Defined in
RowBase:35
|
Internal cells collection |
DefaultDataObject |
Type : any
|
Default value : null
|
Inherited from
RowBase
|
Defined in
RowBase:127
|
Gets / sets the object that will be used to compare against an object in the AddNewRow to detect if the AddNewRow is dirty. |
Index |
Default value : -1
|
Inherited from
RowBase
|
Defined in
RowBase:97
|
Row index |
IsActive |
Type : boolean
|
Default value : false
|
Inherited from
RowBase
|
Defined in
RowBase:43
|
Determinate if the Row is Active |
onDemandData |
Type : any
|
Inherited from
RowBase
|
Defined in
RowBase:51
|
On demand function for row data resolving |
RowsManager |
Type : RowsManager
|
Inherited from
RowBase
|
Defined in
RowBase:71
|
Reference to the RowsManager |
import { RowBase } from './RowBase';
import { RowsManager } from './RowsManager';
/**
* A class representing the Header Row.
*
* @export
* @class HeaderRow
* @extends {RowBase}
* @wType Infragistics.Controls.Grids.Primitives.HeaderRow
*/
export class HeaderRow extends RowBase {
/**
* Creates a new instance of HeaderRow.
*
* @param {RowsManager} rowsManager
* @memberof {HeaderRow}
*/
constructor(rowsManager: RowsManager) {
super(rowsManager);
}
}