Hello everyone,
I've been trying to figure out how to get the entire cell contents (regular text cell) to be highlighted when the user enters edit mode for the cell.
I've been able to achieve the same functionality by using the EventHandler for CurrentCellMoved as follows (but this only highlights all the text when I double click into the cell, not when I start to edit it by pressing "Tab" or "Enter")
private void grid_CurrentCellMoved(object sender, GridCurrentCellMovedEventArgs args)
{
grid.Model.CurrencyManager.CurrentCell.BeginEdit(true);
}
Does anyone know what I can do to get the entire cell contents highlighted when it enters edit mode?
Any help is appreciated.
Thank you.
James