i have a radcombobox in a template of a radgrid, i need to get the value of another radgrid cell when in this event
protected void rcbPrivate_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e)
{
string theval = e.Text; // this is the selected value of the RCB, but also need the recordid that is bound to a hyperlink in another cell
int therowid = //not sure how to get the cell value of this row from another cell of the rad grid
}
please advise.