PDF Viewer scroll not working on touch

I’ve the PDF viewer working on a touch device (Samsung Active Tab)
but scrolling won’t work when zoomed. We can see the scrollbar line on right and bottom but swipe/scroll does nothing

Any idea how I can activate scrolling?
thanx

Hi,

please apply webix.Touch.limit(true); after PDFViewer initialization.

  webix.ui({
      type:"space",
      rows:[
        { view:"pdfbar", id:"toolbar" },
        { view:"pdfviewer", id:"pdf", toolbar:"toolbar", url:"files/WebixDocs.pdf"}
      ]
    });
    
    webix.Touch.limit(true);

Great , this works :slight_smile:
Thanks