Raising events from custom component

I have a custom component in a form. I want the form to be notified on any change in the custom component (preferably by raising forms onChange event). Please guide.

http://webix.com/snippet/15280399

Thanks in advance!

The onChange event will not bubble on its own, so you need to add the onChange handlers for the inputs in the custom element and directly trigger onChange on the parent component from there.

http://webix.com/snippet/53ed2d49

Thanks!