Hi
i have ultragrid ,ultradropdown attached to the one column.if i selected some text from the dropdown iam getting valuemember value (ID) in afterupdate row event.if i did not select anything in dropdown list it is giving dispaly text in after row update event.
can u any one help on this
When the column's Style resolves to 'DropDown', as I believe is the case when youn assign a ComboBox-like editor, the cell's value will be the underlying data value when the text in the edit portion matches one, or the display text itself when that text does not match any items. You can change this by setting the Style property to 'DropDownList' or 'DropDownValidate'; the former prevents typing altogether and the latter restricts typed values to those that match an item in the dropdown list.