Formatted Input doesnt work with webix-jet-core

http://docs.webix.com/samples/60_pro/02_form/09_formatted_input.html

This example works without admin app but not working with webix-jet-core.

webix.ui(create_tenant.$ui).show(); // works

but

this.$scope.ui(create_tenant.$ui).show(); // not working

I cannot type anything. Input is just empty.

Yep, unfortunately, I can confirm the issue.

For now, we cannot provide a workaround for the inputs within a layout, but for a window, you can initialize the form (considering a form from the mentioned sample) as follows:

define([],function(){
	var ui = {
		rows:[
			{ template:"Start page", type:"header" },
			{
				view:"form", 
				elements:[/**/]
			}
		]
	};

	var win= {
		view:"window", 
		body:ui, 
		id:"win1"
	};

	return {
		$ui:{},
		$oninit:function(){
			webix.ui(win).show();
		},
		$ondestroy:function(){
			$$("win1").close()			
		}
	}	
});