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