app.controller("webixTestController", function($scope){
$scope.doSome = function(root){
var list = root.$$("a1"); //referring to list via root object
var template = root.$$("a2"); //referring to template via root object
In my code below I am not getting $$ available on root (the latter correlates to the window itself). That’d be ideal as I have got dom elements with the same id on other windows. Any fix or alternative you can think of?
Will allow to use view:“iWin” which will work the same as normal window, but will have an isolate property similar to layout ( and as result root.$$ will work for it )