/devextreme-datagrid-customize-edit-form-buttons

This example demonstrates how to display the customized Save and Cancel buttons in Form and Popup edit modes.

Primary LanguageTypeScriptOtherNOASSERTION

DataGrid for DevExtreme - How to customize built-in Edit Form buttons and add a custom button

This example demonstrates how to display the customized Save and Cancel buttons in Form and Popup edit modes. This solution also adds a custom button.

Popup Form
CustomButtons-Popup CustomButtons-Form

Implementation details

It is necessary to replace built-in Save and Cancel buttons. The solutions for Popup and Form edit modes are different.

Popup: use the DataGrid.Editing.Popup.toolbarItems array to define all required buttons. These items will overwrite built-in Save and Cancel buttons.

Form: add a SimpleItem with a template. Place the Toolbar component in this template and define the required buttons in this toolbar. Use CSS to hide built-in Save and Cancel buttons:

#gridForm .dx-datagrid-form-buttons-container {  
    display: none  
}

Files to Review

Documentation