gpt4 book ai didi

javascript - 如何在另一个内部显示剑道模板?

转载 作者:太空狗 更新时间:2023-10-29 16:35:16 24 4
gpt4 key购买 nike

我有一个用于添加/编辑的剑道弹出模板。我需要在该模板的 ListView 中显示带有复选框的产品列表。我找到了这个 link创建复选框的 ListView 。我如何在另一个模板中使用它。

****正在寻找这样的东西**** enter image description here

HTML

 <script type="text/x-kendo-tmpl" id="myTemplate">

<div class="item click" value="#=ProductID#" data-bind="checked: isSelected">
<input type="checkbox" class="click" />
<span class="checkbox">#:ProductName#</span>
</div>
</script>

<!-- Kendo popup editor template -->
<script id="popup_editor" type="text/x-kendo-template">
<div style="width:700px">

<div style=" margin-left:100px">
<label for="Product">Products </label>
<div id="listView" class="k-listview" style="width:150px;height:250px;overflow-y:scroll;margin-top:10px">
</div>

</div>

</div>
</script>

脚本

      $scope.productddlDataSource = new kendo.data.DataSource({
type: "json",
transport: {
read: "api/product"
}
});

$("#listView").kendoListView({
dataSource: $scope.productddlDataSource,
template: kendo.template($("#myTemplate").html())
});

//KENDO UI POP_UP

$scope.gridOptions = {
dataSource: $scope.data,
sortable: true,
filterable: true,
scrollable: false,
toolbar: [{ name: "create", text: "ADD Product" }],
editable: {
mode: "popup",
template: kendo.template($("#popup_editor").html()),
confirmation: true
},
...
.
.

提前致谢!

最佳答案

如果您发布一些示例代码来展示您正在尝试执行的操作,将会有所帮助。不过一般来说,模板中的模板是可能的,而且我之前在项目中已经这样做过。这是直接来自 Telerik 的示例: http://www.telerik.com/forums/template-inside-template另一个例子: http://www.telerik.com/forums/nested-templates

关于javascript - 如何在另一个内部显示剑道模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35025836/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com