Currently, ng-view (AngularJS component) does not work. (The easiest way to see that this is the case is to look at the angular-seed example and add a webix-ui
attribute onto the main element).
I believe the cause is because angularjs converts the <div ng-view></div>
element into <!-- ngView: -->
upon compilation before the webix.ui()
gets called, and then webix promptly removes the empty element in webix.markup._initComponent
(which is correct usually but not for ng-view).
Would it be possible to make this work in the future? I’m not sure how view instantiation would work (if you had webix UI elements inside the partials) however, I suppose you could hook into the ng-view linking phase and run a second pass of init markup?