How to select ALL text when tabbing into a cell.

Hi I would like some instructions, please, on how to select all the text in a cell inside grid as it is ‘tabbed’ into.

Thanks for all your help.

Purvez

Please, try to use the following solution:
myGrid.attachEvent(“onEditCell”,function(stage,rowId,colInd){
if (stage==1 && this.editor && this.editor.obj){
this.editor.obj.select();
}
return true
})

Sorry for the delay in acknowledging this but I had to travel at short notice. Many thanks Sematik this worked very well.