访问角度js中的ng-template witin ng-repeat中的范围变量

时间:2015-07-02 13:06:47

标签: javascript html css angularjs

我正在尝试使用idialog在对话框中显示动态更改的变量。我必须在ng-repeat中使用idialog但它不起作用。

ng-repeat的代码:

            <tr ng-repeat="history in historyDetails track by $index| orderBy:sortType:sortReverse| filter:searchSproc">
            <td class="ui-helper-center">
                <script type="text/ng-template" id="history">
                    <font color="black"><h1>Details</h1></font>
                    <br />

                    <font color="black">
                       {{history.SprocInputs}}
                    </font>
                </script>
                <a idialog="history"  title="INPUTS  : &#013; {{history.SprocInputs}} &#013;&#013; OUTPUT : &#013; {{history.SprocOutputs}}" data-toggle="tooltip" data-placement="top" tooltip><span class="glyphicon glyphicon-info-sign "</a>


            </td>
            <td class="ui-helper-center">{{ history.ApplicationName }}</td>
            <td class="ui-helper-center">{{ history.SprocName }}</td>
            <td class="ui-helper-center">{{ history.ExecutedDate }}</td>
            <td class="ui-helper-center">{{ history.RPD }}</td>
            <td class="ui-helper-center">{{ history.Comments }}</td>
            <td class="ui-helper-center">{{ history.ExecutedBy }}</td>
        </tr>

当我点击图片时,它会给我一个对话框,显示细节,而不是表达。

任何人都可以提供帮助。

0 个答案:

没有答案