Datatable and multiview.back() x-scroll problems

If scrolled to the right the datatable won’t render correctly if it’s shown again with multiview.back()
snippet: https://snippet.webix.com/8zne984q

Hello @Jendrik ,

I can confirm the issue, thank you for reporting it! We will do our best to include the fix in the upcoming release.
As a temporary workaround, it is possible to reset scroll position manually in order to force the proper rendering:

 on:{
      onViewChange:function(id){ 
        if($$(id).scrollTo)
          $$(id).scrollTo(0,0)
      }
    },

https://snippet.webix.com/s6qadbg3

Quick addition:
The issue seems to appear from 5.4 onward. 5.3 and previous versions seem to work fine

Still not fixed in Firefox