I'm just wondering how I drop down an UltraDropDown control via code. I can test easily enough if it is current dropped down, but cant find a way to make it drop down.
Thanks.
hi ,
Try to activate the particular cell to which u have binded the ultradropdown and then try this ...
the cell has to be activated beforehand for this to work...
UltraGrid1.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditModeAndDropdown)
Thanks. I tried putting that in the keydown event of the grid (for a specific key), but it doesnt seem to work. Its definately running the code, just not opening the dropdown.