Hi.I am using radcontrols Q4 2006 for ASP.Net.I have a grid which autogeneratecolumns = true and enable client side selection = true.I want to get selecteditems and cell values.When i try grid.SelectedItems[i].Cell[0].Text it gives me   .How can i get cell value.Thanks...
It seems you are trying to get the cell text server-side. To do that, you need to start counting from index 2. This is because the first 2 cells (at index 0 and 1) belong to 2 service columns that are always initialized in RadGrid, even though they are not visible. So, the first visible column cell in your grid starts from index 2. Thus, your code becomes grid.SelectedItems[i].Cell[2].Text. Try that.