Inflate a UI component into a property sheet

Hello everybody! I’m trying to create a custom property editor without using HTML code but just reusing the webix components. I wrote a little snippet example http://webix.com/snippet/13c581cb the problem is that webix.ui() creates and add the component to the main html DOM. If you press on the combo you will see the problem in action… Is there a function to just create the component and return its HTML code, or other tricks to make it working ?

Hello,

It absolutely will not work. If you want to modify it or create a custom one, use this manual:

http://docs.webix.com/desktop__editing.html#customeditors

By the way, the PropertySheet already contains a combo editor: http://webix.com/snippet/da5b5e28

Ok thank you very much!