Hello!
How can I do this:
In a grid cell, on edit cell event, I have the select the information from the cell. I hope you understand my probleme…in htlm is something like this:
onclick=‘this.focus();this.select()’ .
TIA
There is no full solution, but next will work in most cases
grid.attachEvent(“onEditCell”,function(stage,id,ind){
if ( stage == 1 && this.editor && this.editor.obj )
this.editor.obj.focus();
return true;
});