Hi all,
on editable combo serverside options, when I enter new characters, no selection item occurs. I can select options only with mouse. Why?
check this snippet
http://webix.com/snippet/b91262df
Thanks
Hi all,
on editable combo serverside options, when I enter new characters, no selection item occurs. I can select options only with mouse. Why?
check this snippet
http://webix.com/snippet/b91262df
Thanks
If options are defined such way, it will trigger the server-side filtering for them.
// url as options: server-side loading and filtering
options:"/data"
// url within the suggest: loading from server, client-side filtering
options:{ url:"/data" }
But filtering in the combo is not related to the selection. An item can be selected by keyboard, by mouse click or via setValue()
method.
Url within the suggest is exactly what I need, thank you