我的页面中有一个 kendo-window ,我想每次点击一个命令时都要加载内容。我要加载的内容来自 x-kendo-template 或 .html ,其中表达式为 {{Sample}} 。加载内容后,我试图$编译内容以使用角度绑定,但它无法正常工作。这是我到目前为止所尝试的
在我的标记上
<base href="http://demos.telerik.com/kendo-ui/grid/angular">
<script id="tplAddNew" type="text/x-kendo-template">
Action in Add New: {{ Action }}
</script>
<script id="tplView" type="text/x-kendo-template">
Action in View: {{ Action }}
</script>
<div id="example" ng-app="Test">
<div ng-controller="MyCtrl">
<div kendo-window="winTesting"
k-visible="false"
k-modal="true"
k-pinned="true"
k-width="'500px'"
k-min-height="'200px'">
</div>
<button
kendo-button
ng-click="AddEntry()">Add Entry</button>
<button
kendo-button
ng-click="ViewContent()">View Content</button>
</div>
</div>
这是我的控制器
var app = angular.module("Test", ["kendo.directives"]);
app.controller("MyCtrl", [
"$scope", "$compile",
function($scope, $compile) {
$scope.AddEntry = function() {
$scope.Action = "Add New";
$scope.winTesting
.refresh({
//url: '../References/Test-entry.html'
template: kendo.template($('#tplAddNew').html())
})
.setOptions({
title: "Create New User"
});
//$scope.$apply(function() {
// $compile($scope.winTesting.element)($scope);
//});
$scope.winTesting.open().center();
}
$scope.ViewContent = function() {
$scope.winTesting
.refresh({
//url: '../References/View-entry.html'
template: kendo.template($('#tplView').html())
})
.setOptions({
title: "View User Detail"
});
//$scope.$apply(function() {
// $compile($scope.winTesting.element)($scope);
//});
$scope.winTesting.open().center();
}
}
]);
我们假设 Test-entry.html 的内容与 tplAddNew 模板
相同现在,当我使用 $ compile 功能时,它会显示错误 $ apply in progress
任何帮助将不胜感激。 TIA
我还准备了JSFiddle
答案 0 :(得分:1)
剑道还没有真正完善这个小部件。因此,根据使用$ timeout服务:
$timeout(function() {
$compile($scope.winTesting.element)($scope);
}, true);
最后一个布尔参数执行(或多或少)$ scope。$ apply。 See the Documentation
你也可以使用$ parse服务做一些很酷的事情。 You might find it useful as explained in this blog