Question

Delete button of drop down list menu of detail

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!

File attachments
Like 0

Like

1 comments

The function on the detail that you're after is named "deleteRecords". That is what is called from the delete action menu. 

Ryan

Show all comments