Sorting and scrolling position

Hello to everyone,

I’m using the grid now with a medium dataset but 15 columns.
They are out of page to the right.

If I try to sort columns out of the page to the right, the grid jumps back to scrolling(0,0).
Is there a way to stay to the horizontal scrolling position when sorting a column.
Filtering seems to be the same issue.

Anyone has best practice?

Regards,

Jensovic

Pleas,e try to use the scrollTop,scrollLeft properties.
For example:
top=mygrid.objBox.scrollTop
left=mygrid.objBox.scrollLeft
// do the sorting logic
mygrid.objBox.scrollTop=top
mygrid.objBox.scrollLeft=left