deleteRecord
Deletes a record from the database.
Parameters
Example Usages
app.deleteRecord(); //deletes the current displayed record
app.deleteRecord({ id: app.actualRecordId }); //deletes the current displayed recordapp.deleteRecord({ noConfirmMessage: true }); //deletes the current displayed record without confirmation let myRecord = await app.loadRecord("myKeyControl"); loads a record into myRecord
app.deleteRecord({id: myRecord.id}); //deletes the loadedRecordReturn Values
Last updated