Hi,
I am adding a RadComboBox dynamically from code behind.
I've assisgned the onSelectedIndexChanged event to the combo. The following code is firing properly and I am getting item as object. But I need to check the selected value of combobox so that I can compare it with my string.
How to do that??
function
onSelectedIndexChanged(sender, eventArgs)
{
var item = eventArgs.get_item();
}
Regrads,
Lubna.