When a cell changes to edit mode the cursor is set at the beginning of the cell contents.
Here the ajax function:
How can I select the cell contents at the time the cell goes into Edit mode?
Here the ajax function:
function
RowDblClick(sender, eventArgs) {
editedRow = eventArgs.get_itemIndexHierarchical();
$find(
"<%= RadGrid1.ClientID %>"
).get_masterTableView().editItem(editedRow);
}
How can I select the cell contents at the time the cell goes into Edit mode?