Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
Get the selected value of UltraComboEditor
posted

Seems like this should be simple but I can't get it to work.

I have an UltraGrid and in code I assign an ultracomboeditor as the editorcontrol for a cell.  When the user selects an item I want to get that value before leaving the cell and put it into another cell in the active row.  I've tried the CellChange and AfterCellListCloseUp events but at that point the active cell has no value.  I have tried to access the cells editor control but it also has no value.  How can I get the selected item?

Thanks

Parents
  • 240
    Verified Answer
    posted

    I figured it out.  I needed to use the CellEventArgs as such
    Sub gridCriteria_CellChange(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.CellEventArgs) Handles gridCriteria.CellChange

     

    and then I was able to use e.Cell.text to get the value

     

    Thanks

Reply Children
No Data