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.
Camille
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.
Camille
Please, try to use the following code:
myGrid.attachEvent(“onEditCell”,function(stage,rowId,colInd){
if (stage==1 && this.editor && this.editor.obj){
this.editor.obj.select();
}
return true
})