[]
        
(Showing Draft Content)

JsExecutionConfig

Type Alias: JsExecutionConfig

JsExecutionConfig: object

JavaScript execution configuration.

Type declaration

after()?

optional after: (args) => void

Handler function which will be called after JS action execution finished.

Parameters

args

JsEventArgs

Returns

void

before()?

optional before: (args) => void

Handler function which will be called before JS action execution started. You can modify the args.jsCode property inside this handler function. Set the args.cancel property to true if you wish to prevent further JS action execution;

Parameters

args

JsCancelEventArgs

Returns

void

disable?

optional disable: boolean

Set this setting to true if you want to permanently disable the JS action executor.