loadConfigRecordById
Loads a record of a specific app config from Gebra Suite server and returns a promise. This is a async function. You have to await the result, if you want to use it.
Parameters
Result
Example Usages
let myAddress = await app.loadConfigRecordById("address", 15);
let addressName = myAddress.data.name;
let id = myAddress.id;Return Values
Last updated