template

template which will be used to fill parent input from selected record

template template;

Example

webix.ui({
    view:"select",
    options:{
       template:"#name# from #city#",
       data:[
          { name:"Mark", city:"Hrodno" },
          { name:"Anna", city:"Brest" }
       ]
    }
})

Back to top