problem with loading data from server into popup list

I have a select view on my form. When I set options:’/server/path’ it works as expected. But when I try to set options:{ data:’/server/path’ } it throws data loading error, even without sending request to the server. I need it to filter popup list on showing. P.S.: when I set an array object instead of server path it works normally.
http://webix.com/snippet/48fc9ce4

options can handle loading from the server as well as parsing the data array. But if you configure the suggest, external URL should be used with the corresponding url property:

http://webix.com/snippet/abf8e79f

Please check the docs about the data loading.

thank you. now it works.