如何在devexpress中仅合并列

时间:2016-12-06 04:22:07

标签: c# devexpress

我在DataTable中有两个列null值作为数据源组件gridcontrol,如果相同值为null,则列自动合并单元格。 如何在devexpress中仅合并列?

1 个答案:

答案 0 :(得分:0)

要启用单元格合并,必须将GridView.OptionsView.AllowCellMerge属性设置为true。如果要自定义合并条件,则可以使用GridView.CellMerge事件定义合并规则。 / p>

e.g。

describe('Search', function() {
    it('should click Search button and wait for results', function() {
        var el = element(by.id('search'));
        waitForElement(el, 5000);
        el.click();
    });
});

//事件 - 根据您的要求更改

gridView1.Columns["ColumnName"].OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;

参考:
How to merge grid cells
Cell Merging Overview