Defines a Grid Filter (essentially a Boolean Expression)

TypeScript
export interface GridFilter extends
Extends

SuspendableObject

Properties

PropertyDescription
ExpressionThe (boolean) Expression to run
IsReadOnlySets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
IsSuspendedSuspends (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