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
ultra dropdown selected value not coming in ultragrid row update event
posted

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

 

Parents
No Data
Reply
  • 69832
    Offline posted

    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.

Children