How to set default value in combo after remote data loaded?

I have a combo/richselect with remote loading, and I want to set widget default value after remote data loaded. Just like “select” with option selected?

http://webix.com/snippet/0735543a

$$(“idCombo”).setValue(“2”); - > select = “Record 2” where “idCombo” = id combo view

Please check the snippet, I want to set default selected after remote data loaded, according data property.

http://webix.com/snippet/6663e818

Thanks, but is that a way to get combo without setting id in function ready…?

It is possible, though code is a bit verbose

http://webix.com/snippet/23fa895d

Thanks a lot. But my question is, how to get combo, without $$(‘idCombo’)?, for example, this.getParentView().getxxx?

http://webix.com/snippet/1906c2f6

It is the same code, but it now executed from the combo component

Thanks maksim, that’s what I want. Webix is amazing.