Dataview displays objects with data according to a predefined template. It inherits from view.
Specify the component's ID if you are going to work with the dataview later. Optionally, you can place dataview into an HTML container.
webix.ui({
view:"dataview",
container:"dataA",
template:"<div class='webix_strong'>#title#</div> Year: #year#, rank: #rank#",
data:...,
datatype:"...",
xCount:3, //the number of items in a row
yCount:4 //the number of items in a column
});
Related sample: Basic Initialization
Data property defines datasource for the view. Data can be loaded in one of supported data types.
Note that there's a built-in possibility to edit data with dataview. You should create a prototype dataview-edit object beforehand.