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
280
How to get the Value of UltraCombo Editor
posted

Hi There,

Am using ultraComboEditor to use as dropdownlist i have added items

ddl.Items.Add(strValue, strText);

now after populating the data i want to get the Value of strvalue, use to asp control where i can get the value as dll.selecteditem.value, but ultraComboEditor seem dont have this property pls help.

Parents
No Data
Reply
  • 20872
    Offline posted

    Hello Cyus,

    You are right, there is no Value property, but there is DataValue property which returns what you are expecting - the value of the SelectedItem.

    There is also DisplayText property of the SelectedItem.

    If you have any other questions please feel free to ask.

Children