dataview don't show scrollbars

Hi,

I want to visualize a large matrix using the ui.dataview - only data items without any headings. The dataview should be integrated and I try to force the dataview own scrollbars.

<head>
  <style type="text/css"> body,html { overflow: hidden; } </style>
</head>

<body>
  <div id="main" style="width:100%; height:100%"> </div>
  <script type="text/javascript" src="http://cdn.webix.io/edge/webix.js"></script>
  <script type="text/javascript">
  webix.ready(function(){
	t = webix.ui({	view:"dataview", container:"main", template:"#d#",
					xCount:100, yCount:100, scroll:"xy"
			    });
	for (var i=0; i<100*100; i++) { t.add({id:i, d:i}); }
    });
  </script>
</body>

No scrollbars, no autofitting the item width - are these features only available in ui.datatable?

Thanx, Wingi.

DataView, can’t have the horizontal scroll, only vertical
http://webix.com/snippet/d3872313

To have the necessary UI - wrap dataview in scrollview
http://webix.com/snippet/306d1d4a

Great - I was confused from the documentation (there is the scroll-property). But the wrapping is very elegant. I am falling in love with webix.