SystemPredicatesContext
Context used for setting which System Predicates are available
TypeScript
export interface SystemPredicatesContext<PREDICATE_TYPE = string> extendsExtends
Properties
| Property | Description |
|---|---|
| columnScope | Current Scope where Predicates are being used |
| moduleScope | Module for which Predicates are being retrieved |
| systemPredicateDefs | AdapTable-provided System Predicate Definitions |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
columnScope
Current Scope where Predicates are being used
TypeScript
columnScope: ColumnScope;Property Value
moduleScope
Module for which Predicates are being retrieved
TypeScript
moduleScope: PredicateModuleScope;Property Value
systemPredicateDefs
AdapTable-provided System Predicate Definitions
TypeScript
systemPredicateDefs: AdaptablePredicateDef<PREDICATE_TYPE>[];Property Value
AdaptablePredicateDef<PREDICATE_TYPE>[]
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any