This question is locked. New answers and comments are not allowed.
Hi,
In SelectionChanged event i want to know the ColumIndex, RowIndex\ItemIndex of the new cell
thanks
kumar
In SelectionChanged event i want to know the ColumIndex, RowIndex\ItemIndex of the new cell
void radGrid_CurrentCellChanged(object sender, GridViewCurrentCellChangedEventArgs e)
{
int colIndex = e.NewCell; //how to get the column index of this cell
int rowIndex = e.NewCell; //how to get the row index of this cell;
int itemIndex = e.NewCell; //how to get the item index of this cell;
}
thanks
kumar