I have got
<div ng-controller="addRecipientsController">
<add-recipients-window></add-recipients-window>
</div>
and webix is not parsing the directive. Directive and controllers constructors are being hit, however addRecipientsWindowReady() is not. How do I need to combine the controller and both add-recipients-window and webix-ui directives?
<div webix-ui view="window" id="addRecipientsWindow" position="center"
modal="true" height="700" width="900" move="true"
webix-ready="addRecipientsWindowReady(root)">
<div view="head">
<div view="toolbar" stack="cols" margin="-4">
<div view="label" id="addRecipientsWindowTitleLabel" label="{{'AddRecipients'|translate}}"></div>
<div view="icon" id="addRecipientsWindowCloseIcon" icon="times-circle" click="hideAddRecipientsWindow()"></div>
</div>
</div>
<div view="body">
<div view="tabview" id="addRecipientsTabs" height="800px" autowidth="true">
<config name="tabbar">
<config name="on" onaftertabclick="addRecipientsTabClicked()"></config>
</config>
...
tabview headers
...
</div>
</div>
</div>
</div>