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
105
Problem with ultra combo on the wingridw
posted

Unable to get the id of the selected item in the ultra combo'

i have a win grid, wherein there are several columns containing 3 combo boxes and  other text editor columns.

The valueList for each combo is a class that gets it data from the specific columns in the db.

When i use grid.activerow.cells["ColumnName"].value, i am getting a null value.

Have any reason why this is the case?

 

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    nakash said:
    When i use grid.activerow.cells["ColumnName"].value, i am getting a null value.

    So.. just to be clear.. you are saying that you selected a value from the list and you can see the text in the cell, but the Value of the cell is still returning null?

    What event are you using the check the Value? My guess is that you are probably using an event that is firing when the cell's text has been update, but the value has not yet been committed to the data source, such as the CellChange event.

Children