DataChangedScope

Defines where a Data Change should be monitored

TypeScript
export interface

Properties

PropertyTypeDescription
columnIdsSet<string>Scopes a group of Column Ids
wholeRowbooleanScopes every Column in the Row

Property Details

columnIds

Scopes a group of Column Ids

TypeScript
columnIds: Set<string>;
Property Value

Set<string>

wholeRow

Scopes every Column in the Row

TypeScript
wholeRow: boolean;
Property Value

boolean