Scrolling issue in widget

I can scroll in the widget when it’s the only widget in that column, but as soon as you add another widget, scrolling no longer works (it seems like it’s scrolling inside the dashboard instead of the widget).

Widget config:

{
  "name": {
    "en": "Web frame",
    "nl": "Webkader"
  },
  "settings": [
    {
      "id": "url",
      "type": "text",
      "title": {
        "en": "URL"
      }
    }
  ],
  "api": {
    "webRequest": {
      "method": "POST",
      "path": "/request"
    },
    "wsConnect": {
      "method": "POST",
      "path": "/ws_connect"
    },
    "wsSend": {
      "method": "POST",
      "path": "/ws_send"
    },
    "wsClose": {
      "method": "POST",
      "path": "/ws_close"
    }
  }
}

Does anyone know what to add here to allow scrolling (like the regular webframe widget)? I can’t find anything about this in the Apps SDK docs.

Nothing you can add in your widget JSON I think. In my Lists app I do this from the widget code itself. In `onTouchMove` there is a preventDefault that allows my widget to prevent Homey from scrolling the dashboard itself. Maybe you can try something similar.