I have a grid in which i have a ultradropdown with a valuelist attached to it. Everything works fine. However, I would like to expand the dropdown when entering the cell in the wingrid. Is there anyway i can do that programatically?
this.ultraGrid.AfterEnterEditMode += new EventHandler(this.ultraGrid_AfterEnterEditMode);
private void ultraGrid_AfterEnterEditMode(object sender, EventArgs e){ UltraGrid control = sender as UltraGrid; UltraGridCell cell = control.ActiveCell;
if ( cell.Column.Key == "whatever" ) cell.EditorResolved.DropDown();}
super.... spot on! thx a bunch