textValue

defines which field from suggest list will be used as text after selecting an option

string textValue;

Example

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

Back to top