Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Scroll not work with Samsung for internet browser (and older Safari ...)

    Scroll doesn't work with latest Samsung for internet default browser (and older Safari ...), the page centralises and locks, user can not move the content up or down.

    Latest Smartclient 11 downloaded 2017-08-20

    Example code below.

    <SCRIPT>

    isc.HLayout.create({
    border: "1px solid red",
    ID:"testWindow1",
    autoDraw:false,
    align:"center",
    width:200,
    height:400,
    members:[]
    });

    isc.HLayout.create({
    border: "1px solid green",
    ID:"testWindow2",
    autoDraw:false,
    align:"center",
    width:200,
    height:400,
    members:[]
    });

    isc.HLayout.create({
    border: "1px solid yellow",
    ID:"testWindow3",
    autoDraw:false,
    align:"center",
    width:200,
    height:400,
    members:[]
    });

    isc.VLayout.create({
    border: "1px solid black",
    ID:"mainVLayout",
    autoDraw:false,
    align:"middle",
    padding:100,
    width:200,
    members:[testWindow1, testWindow2, testWindow3]
    });

    isc.HLayout.create({
    border: "1px solid blue",
    ID:"mainWindow",
    autoDraw:true,
    align:"center",
    width:"100%",
    height:"100%",
    members:[mainVLayout]
    });

    </SCRIPT>

    #2
    See the Mobile Development overview and make sure you've set up the viewport as described.

    Then, if there is still an issue, indicate how exactly you are scrolling, what you expected, and what happened. Also the specific device and Android version (if applicable - you didn't say).

    Finally, you mention there's also an issue in "older Safari" - for that, specify platform and version (of platform and browser) and again, how the scrolling is performed.

    Comment


      #3
      The problem is, if a page is larger than the screen, page locks and scrolling the page does not work.

      Current viewport is <meta name="viewport" content="width=device-width, initial-scale=1.0">

      Browser: Samsung Internet 5.4.21.54
      Device: Samsung Galaxy S8
      OS: Android 7.0

      Same problem occurs with other Samsung units.

      Same problem with older Chrome (not Safari), 56.0.2924.87 together with Android 7.0.0 on a Samsung pad. Chrome 59.0... works fine on same HW.

      I can provide an URL on a production server for verification, on a separate mail.

      Comment

      Working...
      X