Categories | Question details Back To List | ||
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(); Answer posted by Support on Feb 02, 2009 03:12 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 <style> .dhx_textarea{ z-index:9999; } </style> Answer posted by Seetharaman Srinivasan on Feb 02, 2009 03:16 It works now with this style added |