When setting options for the webix combo widget as a URL, I noticed that it triggers server-side filtering:
webix.ui({
rows:[
{
view:"combo",
options:"https://api.myjson.com/bins/c81ir" // test link
}
]
});
The URL returns static JSON data. However, in my case, the server-side filtering does not have any effect.
Is there a way to avoid this behavior, or should I consider loading the options using a separate AJAX call?