isLoadingRecord

This Boolean can be used to check whether the app is still loading.

Possible values are true or false.

Value
Meanin

true

App is still loading.

false

App is completely loaded.

Example

//Check if app is still loading and only save if the state is completed
if (!app.isLoadingRecord) {
    app.saveCurrentRecord();
}

Last updated

Was this helpful?