setting scroll attributes for a paper view?

Hello good people of Webix,

Another view question if I may. I am using the paper view to display an image on a canvas. The problem I have is that the view is behaving badly when resized. No scroll bar appears. The example below shows the image correctly but no scroll bar ever appears.

I was under the impression that scroll: “x” or scroll: “y” were valid markup tags?

Any thoughts welcomed.

TTIA.

//----------------snip-----------------------
webix.ui(
{
// div to which this whole assembly is anchored
container: “layout_container”,
rows:
[
{
cols: [
// paper horizontal scroll bar?
{ view: “paper”, scroll: “x”, width: 512, height: 512, canvas: “image_content”, ready: null },
{ view: “resizer” },
],
}
] …
}
);
//----------------snip-----------------------

Hello @G40,
To scroll the view, you can wrap a scrollview (a scrollable container) around it.
Please take a look at the snippet:
https://snippet.webix.com/7cigs9gx

Hello @annazankevich

Fantastic. Precisely what was required. Thank you for the help.