I have a radGrid, which contains a list of rows, each row contains a panel and and a radcombox. When user selects a new value in radcombox, i want to update the panel in that row. I am having problem in getting the row index. Apparently, here's my method:
protected void rcbContent_OnSelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
int intIndex = //how do i get the current row index?
Panel pnlPreview = rptZones.Items[intIndex].FindControl("pnlPreview") as Panel;