I have a Print widget inside an Expand widget. When viewing on a mobile device the vertical scrollbars are not available regardless of orientation. Is there a css workaround I can use?
var printExpand = new Expand({
content: new Print({
view: view,
printServiceUrl: printServiceUrl
}),
view: view,
autoCollapse: true,
expanded: false,
expandTooltip: 'Print Map',
group: "top-right",
mode: "floating"
});