Hi
can you please tell where should I call editstop() to close the grid component after clicking anywhere outside the grid but within grid div box
Hi,
We have migrated 2.5 to 3.6 version of DHTMLXGRID and found one issue which is not present in 2.5 version.
In griddiv if there is extra space due to extra width or hight of grid div box then when we open any grid component i.e. combo or textArea and click on anywhere inside the extra space at that time opened grid component is not getting closed. But when we click some where on grid or outside the grid div box the opened component gets closed.
Is there any solution to fix this issue in 3.6 version?
Hi,
OnEditCell event is not getting called when we click on outside the grid row but inside the grid div box.
You can try to use something like next
dhtmlxEvent(mygrid.objBox, “click”, function(){ mygrid.editStop() })
Thanks, this works in unfreeze pane of grid div. If I click in blank portion of freeze pane, grid component remains open. Is there any way to fix this in freeze section of grid?
You need to use something like next
dhtmlxEvent(mygrid.objBox, "click", function(){ mygrid.editStop() })
if (mygrid._fake)
dhtmlxEvent(mygrid._fake.objBox, "click", function(){ mygrid.editStop() })