template which will be used to fill parent input from selected record
webix.ui({
view:"select",
options:{
template:"#name# from #city#",
data:[
{ name:"Mark", city:"Hrodno" },
{ name:"Anna", city:"Brest" }
]
}
})
Back to top