Can I access the Ultra Combo events when it is a cell drop down?
Thanks
I see that the events get fired, but it almost looks like its on row update? I want to be able to fire the event when selection change actually occurs. I have other cells that rely on what is selected in the drop down.
Hi,
No, you can't really use the events of the UltraCombo control, because the grid does not use the control. The Control simply provides a copy of it's own editor for use by the grid.
You will need to use a grid event such as CellChange or AfterCellListCloseUp or maybe AfterCellUpdate.
I am trying to get one of those two method to work. I am looking to get what was selected before Exit Enter Mode event. However, I get either the last item in the drop down list or the last item that in that column. How can I get what was selected before exiting the cell?
I am trying to get either one of those to methods to work? Is there a way to track what they selected in the drop down? Before exit edit mode? In cell change/ list close I want to take the datavalue they selected to determine other cells, but I keep getting either the last item in the list or what ever was the last item in that column.