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.
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.
yes i have got it
ddlPreJudge.SelectedItem.DataValue.ToString()
if u want to loop in and wanna check each row
((
ValueListItem)(ddlPreJudge.Items[i])).DataValue.ToString().
I am glad that you were able to figure it out.
Please feel free to let us know if you need any further assistance.