1

如果我的条件为假,我需要将网格单元格设为只读。在 devexpress 网格控件中。

4

1 回答 1

1

试试这个并根据要求改变条件

protected void ASPxGridView1_CellEditorInitialize(object sender, DevExpress.Web.ASPxGridView.ASPxGridViewEditorEventArgs e) {
    if (ASPxGridView1.IsNewRowEditing) return;
    if (e.Column.FieldName == "UnitPrice")
             if (ASPxGridView1.GetRowValues(....) == ....)
                   e.Editor.ReadOnly = true;
}
于 2016-07-05T11:31:03.637 回答