dhtnlgrid

when I use txt type to edit a field in a grid, it works, when the grid was stand alone. When I use the grid inside a TAB, it does not work. Is there a restriction?



mygrid4.setHeader(“ROW,FIELD NAME,FIELD VALUE,”);

mygrid4.setInitWidths(“50,190,400,*”);

mygrid4.setColAlign(“right,left,left,left”);

mygrid4.setColSorting(“int,str,str,str”);

mygrid4.setColTypes(“ro,ro,txt,ro”);

mygrid4.enableMultiline(“true”);

mygrid4.enableBlockSelection();





There is no any special restriction, but the editor positioned absolutely, so problem may be caused by some kind of css conflict.
You can try to add next css rule


.dhx_textarea{
z-index:9999;
}

It works now with this style added