hi guys,
i don't know whether its a bug or i'm accessing it wrong , that's why i came here to get some help from the experts.
in radgridview a set of data is loaded using dataset, so when some clicks on the row it will display the row values in a label above.
so what i have done is working 100% untill i do the following, if i use the gridview's bulit in filtering option and filter the results , i'm getting the value of some other row , i have attached a screenshot. as u can see in it somerow is selected but it's displaying someother row name in the textbox above, here is the code i use, i use VC# 2010 with rad Q2 2012.
private void radGridView1_CurrentRowChanged(object sender, CurrentRowChangedEventArgs e){
txt_Name.Text = radGridView1.Rows[radGridView1.CurrentCell.RowIndex].Cells["NAME"].Value.ToString();
}
please let me know if u need more info
thanks suren