Prevent scrolling to selected column

Hi!
In dhtmlxGrid I have horizontal scroll. When clicking on cell that partially displayed the Grid is scrolled to selected column.

How can I prevent it?

dhtmlxGrid 2.0  (dhtmlxSuite - Enterprise License)

���� � ������� �� ����� �������, ���� ��������� �� �������.

Behavior can’t be changed through API, but you can override related method of grid in next way


grid.moveToVisibleA=grid.moveToVisible;
grid.moveToVisible=function(a){
return this.moveToVisibleA(a,true);
}

It will block horizontal auto-scrolling in grid

Thanks very much for your help!

It works perfect!