Following the tutorial :
http://scotch.io/tutorials/javascript/angular-routing-using-ui-router
and the demo :
http://scotch.io/demos/angular-ui-router#/about
On the about page , there are two named views, "columnOne" and "columnTwo".
Is it possible to instantiate the named views conditionally , If some condition fails the named view "columnOne" and its controller shouldnt instantiate and its place be left empty on the page.
I would like to avoid the use of ng-if on the as do not wish the controller to load thus saving on the API calls the controller might have.
Something like rejecting in a resolve block but for sibling named views.