Kendo ui 剑道UI列表视图-远程数据

Kendo ui 剑道UI列表视图-远程数据,kendo-ui,kendo-listview,Kendo Ui,Kendo Listview,我想要一个剑道列表视图来显示图像,所以 这是我的KendoUI列表视图,但我从controller获取的值在模板中没有绑定。请帮助 <div id="example"> <div class="demo-section"> <div id="listView"></div> <div id="pager" class="k-pager-wrap"></div>

我想要一个剑道列表视图来显示图像,所以 这是我的KendoUI列表视图,但我从controller获取的值在模板中没有绑定。请帮助

         <div id="example">

    <div class="demo-section">
        <div id="listView"></div>
        <div id="pager" class="k-pager-wrap"></div>
    </div>
    @section scripts{
    <script src="~/scripts/kendo/kendo.all.min.js"></script>
    <script type="text/x-kendo-template" id="template">
        <div class="product">
            <img src="#= Title #" alt="#: Title # image" />
            <h3>#:Title#</h3>

        </div>
    </script>

    <script>
        $(function () {
            var dataSource = new kendo.data.DataSource({
                transport: {
                    read: {
                        url: "/api/my/thumbnail",
                        dataType: "json"
                    }
                },
                pageSize: 15,
            });

            $("#pager").kendoPager({
                dataSource: dataSource
            });

            $("#listView").kendoListView({
                dataSource: dataSource,
                template: kendo.template($("#template").html())
            });
        });
    </script>
}
    <style scoped>
        .demo-section {
            margin: 20px auto;
            border: 0;
            background: none;
            width: 577px;
        }

        #listView {
            padding: 10px;
            margin-bottom: -1px;
            min-width: 555px;
            min-height: 510px;
        }

        .product {
            float: left;
            position: relative;
            width: 111px;
            height: 170px;
            margin: 0;
            padding: 0;
        }

            .product img {
                width: 110px;
                height: 110px;
            }

            .product h3 {
                margin: 0;
                padding: 3px 5px 0 0;
                max-width: 96px;
                overflow: hidden;
                line-height: 1.1em;
                font-size: .9em;
                font-weight: normal;
                text-transform: uppercase;
                color: #999;
            }

            .product p {
                visibility: hidden;
            }

            .product:hover p {
                visibility: visible;
                position: absolute;
                width: 110px;
                height: 110px;
                top: 0;
                margin: 0;
                padding: 0;
                line-height: 110px;
                vertical-align: middle;
                text-align: center;
                color: #fff;
                background-color: rgba(0,0,0,0.75);
                transition: background .2s linear, color .2s linear;
                -moz-transition: background .2s linear, color .2s linear;
                -webkit-transition: background .2s linear, color .2s linear;
                -o-transition: background .2s linear, color .2s linear;
            }

        .k-listview:after {
            content: ".";
            display: block;
            height: 0;
            clear: both;
            visibility: hidden;
        }
    </style>
</div>

现在这些数据没有在模板中绑定。

请将=签名更新为:在模板中签名。请参阅下文:

<script type="text/x-kendo-template" id="template">
    <div class="product">
        <img src="#: Title #" alt="#: Title # image" />
        <h3>#:Title#</h3>
    </div>
</script>
ListView是否为数据源中的每个项添加元素?如果是,这些元素是否包含模板和元素的其他部分?
<script type="text/x-kendo-template" id="template">
    <div class="product">
        <img src="#: Title #" alt="#: Title # image" />
        <h3>#:Title#</h3>
    </div>
</script>