Press left mouse button and drag the column.

Hi, team



I found an interesting thing when I press left mouse button and drag the gird’s column to adjust the width.

If you do not release the left mouse and move the cursor out of the current IE browser ,

then you release the left mouse and move the cursor back to the grid ,you will found that you still adust the width freely.



Could you tell me how to solve that problem?



thanks.

You can try to add next code to the grid’s init

dhtmlxEvent(document.body,(_isIE?“mouseleave”:“mouseout”),function(e){
if (e && e.relatedTarget && e.relatedTarget.tagName!=“HTML”) return;
mygrid.stopColResize();
})


It will stop resize process when mouse will go out of the window.