I'm using Webix UI It allows to define the combo control like next
webix.ui({ view:"combo", options:["One", "Two", "Three"] });
It works fine, except of one moment. By default combo filters data by stat of text ( after typing "o", combo list will show only "One" option). How I need to change the above code to use full text filtering ( typing "o" must whow both "One" and "Two" options, as both of them contains the letter "o" )