码迷,mamicode.com
首页 > 其他好文 > 详细

KendoUI坑系列之 ng-include 上ng-controller 无法获取控件

时间:2016-06-02 09:45:46      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

A.Html内容如下
<div>
    <div  kendo-grid="testGrid" k-options="testOptions"> </div>
</div>

B.Html内容如下

 <ng-include  id="dashboard-section1" ng-init="init(0)"    data-ng-controller="textCtrl"  src="‘/A.html‘"></ng-include>

Error:
在testCtrl 中是无法使用$scope.textCtrl获取 testGrid ,是因为 ng-inclue会生成一个独立的子scope ,和controller上的scope独立开来   类似于js的原型链。

所以要在 testCtrl上的 $scope访问 A.Html的控件 则需要 像下面这样写


<div>
    <div  kendo-grid="$parent.testGrid" k-options="testOptions"> </div>
</div>

  

KendoUI坑系列之 ng-include 上ng-controller 无法获取控件

标签:

原文地址:http://www.cnblogs.com/Zoes/p/5551873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!