2016-07-05 12 views

答えて

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; 
} 
+1

おかげで、私はWPFプライベートボイドtblView_ShowingEditor(オブジェクト送信者、ShowingEditorEventArgs E) { 場合(e.Row!= null)の { 場合(e.Column.FieldName ==「ColumnNameにして自分なりに答えを変更しました") { e.Cancel = true; } } } –

+0

e.Cancel = trueは読み取り専用です。 –

関連する問題