defines which field from suggest list will be used as text after selecting an option
webix.ui({
view:"select",
options:{
textValue:"name",
data:[
{ name:"Mark", city:"Hrodno" },
{ name:"Anna", city:"Brest" }
]
}
})
Back to top