Set center window position on webix jet 1.x

I tried migrating jet 0.x to 1.x following GitHub - webix-hub/webix-adminapp-demo: Demo of Webix MVC app, http://webix.com/demos/admin-app/ using new wjet 1.x
some window not working set position: “center”
How to center window position?

Also some of navigate route
https://webix.com/demos/admin-app/#!/app/charts
and
https://webix.com/demos/admin-app/#!/app/forms
all doesn’t work after I click this navigation link

Thanks.

Can you please provide a sample of your code? By default, window positioning works fine: https://webix.com/snippet/13b67670

Also some of navigate route
Jet fails due to the error in the particular module (charts). The issue is related to Webix UI library, not to the Jet.
In fact, the error was caused by legend definition in the pie chart (diffchart from views/modules/diffchart).
We will fix that error in Webix library, but so far you can just remove this view from the charts (charts.js) module.

As for the future error handling in Jet, please check the related docs chapter.
Such error handling allows finding the precise module where an error was encountered.

I use from admin snippet GitHub - webix-hub/webix-adminapp-demo: Demo of Webix MVC app, http://webix.com/demos/admin-app/
on Add Order form not properly centered
https://webix.com/demos/admin-app/#!/app/orders


this._form = this.ui(phonebookForm);
this.$scope._form.show(this.$view);

to this


this.$scope.ui(phonebookForm).show();

now work fine. thanks

Order window has no position options. In our demo, please pay attention at the followinfg lines (orders.js, 18-20)

{ view: "button", type: "iconButton", icon: "plus", label: "Add order", width: 130, click: function(){
		this.$scope._form.show(this.$view);
}},

this.$view here refers to the HTML node of the button (described in docs), so the position of the window is linked to it.

The most simple solution to set the position of the window is to add position:"center" to its configuration (views/forms/order.js). To learn all possible ways, please check the article related to window positioning.

@Listopad
Thanks