Hi,
I've a radcombobox and I set the datasource to a List<string>
List<String> obDateItems = GetDateForSelectedReports();
m_radFromDateRangeCombo.DataSource = obDateItems;
m_radFromDateRangeCombo.DataBind();
m_radFromDateRangeCombo.SelectedIndex = ???;
I need to set my selectedIndex to the last item in the combobox . how do I do this in c#?Pls help me with code.
Thanks,
ZR