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.