Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Team,
I've 3 RadComboBox inside RadListview. I just want to get the selectedIndex of the each Radcombobox items lying inside the RadListView. Aready am using RadListView_ItemDataBound event for databing. What way I can retrieve the SelectedIndex? //Thanks....
protected
void
RadListView1_ItemCreated(
object
sender, Telerik.Web.UI.RadListViewItemEventArgs e)
{
if
(e.Item
is
RadListViewDataItem)
RadListViewDataItem item = (RadListViewDataItem)e.Item;
RadComboBox combobox = (RadComboBox)item.FindControl(
"RadComboBox1"
);
string
index = combobox.SelectedIndex.ToString();
}