Skip to main content
Version: 7.0

ASYNCUPDATE operator

The ASYNCUPDATE operator creates an action that implements asynchronous update.

Syntax

ASYNCUPDATE expr

Description

The ASYNCUPDATE operator creates an action that evaluates expr and sends the resulting value to the open editor on the client.

Parameters

  • expr

    Expression whose value is sent to the open editor.

Examples

// pushing the new value of the displayed code back to the open editor
onChangeSizeCode(Store store) {
DIALOG SelectStoreSize OBJECTS ss INPUT DO {
storeSize(store) <- ss;
}
ASYNCUPDATE storeSizeCode(store);
}