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
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.