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.
You should start a new thread and include a sample project reproducing the issue, if possible. :)
Hi,
I am facing same kind of issue and couldn't able to solve
I am having a UltraComboEditor, which has few checkboxes. The issue what I am facing is the SelectedItem property is giving previously seleted or null value.
Much appreciated if anyone can help me on this
Hello Cyus,
I am glad that you were able to figure it out.
Please feel free to let us know if you need any further assistance.
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().
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.