Webix jet with Phalcon PHP

Hi, is it possible to integrate webix jet with phalcon php? I have manage to integrate webix component (layout) with phalcon php, but the result is not single page app. Would be nice if i can fit that to Webix Jet framework. Sample code as below. Thanks

Below sample codes for my main template (index.volt file)

<code class='html'>
....
....
    webix.ui({
		type : "space",
		id : "a1",
		rows : [{
			type : "space",
			padding : 0,
			responsive : "a1",
			cols : [
				menu
				,
				{
					id : "t1",
					view: "template",
					content : "mainContainer",
					minWidth : 300
				}
			]
		}] 
	}).show();
....
....
//DIV mainContainer here
//volt template content
	{{ content() }}
//End div mainContainer
`