You are viewing an old version of this page. View the current version.
Compare with Current View Page History
Version 1 Next »
The event happens after the saving.
Return:
SimpleEventBus.on('afterSaveEvent', async (obj) => { const savedRecordId = obj.payload.recordId; });
The event happens after the saving and when the UI-actions are returned.
{ view: 'default', tableName: 'task', recordId: '1000000001', displayValue: 'Test Task', result: 'OK' , } или { errors: ['Text error'], result: 'ERROR' , }
SimpleEventBus.on('afterSaveAndGetUiActionsEvent', async (obj) => { });
SimpleEventBus.on('afterLoadBreadcrumbs', async (obj) => { });
SimpleEventBus.on('afterValidation', async (obj) => { });
The event happens when all widgets are loaded.
SimpleEventBus.on('afterLoadWidgets', async (obj) => { });