Hi all:
I have a three ultra combos inside of my grid that have the bottom line for data entry. I initialize the grid and put the combos in each individual cell and look ok no problem with the display. The problem is when you select the data and put the new line in the grid and you proceed to the second row of data if you change the datasource of one of the combo box the data in the grid change the values to the PK corresponding to the data originaly entered. There some way to dissassociate the data displayed in the grid with the combo displayed in the data entry line?
You have two options:
1) Assign a combo to each cell, not to the entire column. That way you can keep a different list on each cell.
2) Populate your combo will all possible values and then use a ColumnFilter on it to only display the values that are valid for the grid's ActiveRow.