Combobox does not set Value

Hi all,

thats the code:
$$(‘myCombo’).getList().clearAll();
$$(‘myCombo’).getList().load(url);
$$(‘myCombo’).setValue(“Track 1”);

The combobox loads all 4 entries: choose Track,Track1…a.s.o.
but the setValue() method doesnt set the value. The combo is set with an empty string. What I’m doing wrong?

any idea anyone?

try this way

$$('myCombo').getList().clearAll();
$$('myCombo').getList().load(url).then(function() {
    $$('myCombo').setValue("Track1");
}); 

No, not working.

any error?
can you provide url response content?

As far as I can see, setting value in the callback of the load() method works smoothly: https://webix.com/snippet/f1a1a58a

I used now the id…this works fine