onRecordLoaded

The event occurs after a record is loaded and displayed. You could do some updates or refreshes at this point.

    console.log(`record ${app.recordId} successfully loaded`);
    console.log(app.record); //you can access the record json object here

Last updated