In the Q3 2007 version, I was able to put a radgridcell into edit mode by doing this:
| this.radGridView1.Rows[2].IsCurrent = true; |
| this.radGridView1.Columns[2].IsCurrent = true; |
| ((GridDataCellElement)this.radGridView1.CurrentCell).BeginEdit(); |
But now in the Q1 2008 version, the method BeginEdit() no longer belongs to the GridDataCellElement class..
1) How can I accomplish this in the 2008 version
2) Is there somewhere on this site, or maybe in the documentation provided with the controls themselves where I might be able to find the answer to this question, and similar questions, without having to ask about it here?