childApps
Examples
// Entries are made in the parent app and you want to update the ChildApp.
// In this case the childapp has the name customerOrderLineSmall
let childApi = app.childApps.find(childApi => childApi.appName == "customerOrderLineSmall");
if (childApi) {
await childApi.setFieldValue("comboAddressId", app.getFieldValue("coAddressId"));
await childApi.setFieldValue("colnOrderId", app.getFieldValue("id"));
}Last updated