GridFilter
Defines a Grid Filter (essentially a Boolean Expression)
TypeScript
export interface GridFilter extendsExtends
Properties
| Property | Description |
|---|---|
| Expression | The (boolean) Expression to run |
| IsReadOnly | Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full') |
| IsSuspended | 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