Hello,
I am looking for the name of the "Delete" button in the drop down list menu of a detail. Exactly like in the code below, but instead of the DataGrid delete button, I need the one that is in the detail menu.
define("UsrMyObjectSection", [], function() {
return {
entitySchemaName: "UsrMyObject",
details: /**SCHEMA_DETAILS*/{}/**SCHEMA_DETAILS*/,
diff: /**SCHEMA_DIFF*/[
{
"operation": "remove",
"name": "DataGridActiveRowDeleteAction"
}
]/**SCHEMA_DIFF*/,
methods: {}
};
});
Thank you!