I am trying to use ng-view with webix, sample code is
partial included by router:
`
js code:
//i am try to describe full page in one config app.controller('ContactsCtrl', function(){ this.viewConfig = { rows: [ {view: 'template', type: 'header', template: 'My header'}, cols: [ {view: 'list', data: [....]} {view: 'form', elements: [....]} ] ]; }; })
ui rendering ok, but i see unwanted behavior of elements, some of them not refreshes on window resize, some - after changing elements properties(templates, etc). $$(‘elementId’).refresh() - helps with view updating, but i suspect - this way not normal.
Question is:
Do you have any recomendation for work with angular ng-view? or maybe webix analog for routing/changing view without reloading page?