RealGrid2 Guide
Grid editing
Batch edit merge cells

Batch edit merge cells

You can batch edit merged cells using the mergeEdit property of the column.

{
     name: "Gender",
     fieldName: "Gender",
     width: "40",
     header: {
         text: "Gender",
         styleName: "orange-column"
     },
     mergeRule:{
         criteria: "value"
     },
     mergeEdit: true
},

When making batch merge changes, the options below must be applied to use the mergeEdit function.

gridView.editOptions.commitByCell = true;

Hide focus inside merge

gridView.displayOptions.showInnerFocus = false;