1

app.directive("widget", function () {
    return {
        restrict : 'E',
        templateUrl: function (elem, attr) {
            return '/Views/Widget/' + attr.widgettype + '.html';
        },

        controller: function ($scope, $element, dataService) {
            console.log($scope.w.DataUrl);
            dataService.getData($scope.w.DataUrl)
                .then(function (data) {
                        $scope.DataSource = data;

                        $('#' + $scope.w.Name).kendoGrid({
                            columns: PrepareColumns($scope.w.Columns),
                            dataSource: data,
                            scrollable: true,
                            sortable: true
                        });
            });
       },       
    }
});
<div ng-app="WidgetContainer" ng-controller="WidgetContainerCtl">
    <widget ng-repeat="w in UserWidgets" class="panel panel-default" widgettype="{{w.WType}}"></widget>
</div>

上記は、私が達成しようとしているコードです

1) 渡されたコレクションに基づいてウィジェット タグの生成を繰り返します。2) widgettype 属性値を使用して、必要なテンプレートを決定します。

しかし、上記は次の行で widgettype の値をフェッチしません

return '/Views/Widget/' + attr.widgettype + '.html';

すでに nr-attr-widgettype を使用してみましたが、それも機能しません。

4

0 に答える 0