Hi, I have been developing a simple application with Telerik in a previous version (i don't know exactly wich it was) But now our company acquired the version 2010 SP1 (v2010.2.10.0806 and I'm experiencing a lot of my problems. The most important is that now i cant access to a cell from a RadGridViewCell by the CellElement propertie. In my code i wrote:
private void gridviewname_CurrentCellChanged(object sender, CurrentCellChangedEventArgs e) {
if (e.NewCell != null) {
gridviewname.Rows[e.NewCell.RowInfo.Index].Cells[2].CellElement.Enabled = false;
}
}
But the problem is that with the new version i can't disable a cell from a gridview by that way. I need disable the cell in the CurrentCellChanged event, NOT another. I know it's possible to disable a cell in the CellFormatting event by writing "e.CellElement.Enabled = false" but i really need to disable it in CurrentCellChanged event. What can I do? Thank you!
(sorry, i don't speak english well as you already notice xD)