Hey!
I have the following code :
private void GridView_CellValueChanged(object sender, DevExpress.XtraGrid.Views.Base.CellValueChangedEventArgs e)
{
if (e.Column.FieldName.Equals("Yes"))
{
this.GridView.FocusedColumn = this.GridViewAnamnes.Columns["Comment"];
this.GridView.ShowEditor();
if(this.GridViewAnamnes.ActiveEditor is PopupBaseEdit)
((PopupBaseEdit)this.GridViewAnamnes.ActiveEditor).ShowPopup();
}
}
My Intensions is to activet and open the Comment columns MemoExEdit when the column Yes have been set.
The problem is that GridView.ActiveEditor is still a checkBoxEditor (the same as the Yes column). How is this possible when the FocusedColumn really is the Comment column when runnning ShowEditor()?