Hello dear webix team,
How can i reload options from serverside when the data in the combo is loaded via the proxy functionality?
https://snippet.webix.com/slpd6t11
Thanks,
Michael
Hello dear webix team,
How can i reload options from serverside when the data in the combo is loaded via the proxy functionality?
https://snippet.webix.com/slpd6t11
Thanks,
Michael
Hello Mimu1988
To reload options loaded via the proxy you can use this proxy object both in the combo url and inside onChange event handler. Then use this proxy in the load method of the list which options consists of.
Please check the example: Code Snippet
Another way of reloading the options is to use clearAll(true) and loadNext():
list.clearAll(true);
list.loadNext();
Please check the example: Code Snippet