Documentation

templateGroup

an html template that defines data that will be presented in group header in the collapsed state

template templateGroup;

Example

webix.ui({ 
        view:"grouplist", 
    id:"mylist", 
        url:"data.xml", 
        datatype:"xml",
    type:{
        templateItem:"#name# (#author#)",
            templateGroup:"#name#",
        templateBack:"#name#",
    }
});

See also

Back to top