GridFilter
Defines a Grid Filter (essentially a Boolean Expression)
TypeScript
export interface GridFilter extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| Expression | string | The (boolean) Expression to run |
| IsReadOnly | boolean | Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full') |
| IsSuspended | boolean | Suspends (i.e. turns off) an Adaptable Object |
Property Details
Expression
The (boolean) Expression to run
TypeScript
Expression?: string;Property Value
string
IsSuspended
Inherited from SuspendableObject
Suspends (i.e. turns off) an Adaptable Object
TypeScript
IsSuspended?: boolean;Property Value
boolean
IsReadOnly
Inherited from AdaptableObject
Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
TypeScript
IsReadOnly?: boolean;Property Value
boolean