How to reset view in dhtmlxConnector configuration?

My grid version is 3.5 pro
I want to reset view and re-fetch the current viewport data.
I was trying this solution:

grid._reset_view();

But this:

  1. does one refetch the data
  2. changes scrollTop to 0 - I want to stay in my current scrollTop

Please help

You need to use

grid.clearAll(); grid.load("data.php");

or

grid.updateFromXML("data.php")