Custom form control

Hello Webix team, I have a requirement where I have to create a custom form control which is combination of several form controls. I m having difficulty in getting the value of custom control inside the form. can u please help me to find out the issue below is the demo snippet

https://snippet.webix.com/49ehzk8o

@Helga can u please help me on this

Hello @qadirkanore ,
In order to get/set the value of some specific element within the form, you should specify its name:

{view:"combo" , value:"One", name:"combo", options:["One", "Two", "Three"] }

Please take a look at the snippet:
https://snippet.webix.com/xppu61b9

@annazankevich thanks for the replay