Is it possible to build the HTML inside of a template function using the webix.ui function?
For example, what if I wanted to use the webix rows:[] and cols:[] constructs instead of HTML divs in the following dataview template function?
template:function(obj){
var dateX = webix.Date.dateToStr("%Y")(new Date(obj.year*1000));
return “
”+obj.title+"
Year: “+dateX+”, rank:"+obj.rank},