• Kendo UI ListView Items介绍,让Web界面开发变得更简单


    Kendo UI for jQuery R3 2020试用版下载

    Kendo UI目前最新提供Kendo UI for jQuery、Kendo UI for Angular、Kendo UI Support for React和Kendo UI Support for Vue四个控件。Kendo UI for jQuery是创建现代Web应用程序的最完整UI库。

    Items

    您的项目可能需要在可视化上区分ListView中的每个替代项。

    例如,您可能需要在稍暗的背景(带状行)中渲染第二个项目。 要在ListView中呈现交替项,请通过定义altTemplate属性来设置模板。

    <div id="listView"></div>
    <div class="k-page-wrap">
    <div id="pager"></div>
    </div>
    
    <script type="text/x-kendo-tmpl" id="template">
    <div class="product">
    <img src="https://demos.telerik.com/kendo-ui/content/web/foods/#= ProductID #.jpg" alt="#: ProductName # image" />
    <h3>#:ProductName#</h3>
    <p>#:kendo.toString(UnitPrice, "c")#</p>
    </div>
    </script>
    
    <script type="text/x-kendo-tmpl" id="altTemplate">
    <div class="product alt">
    <img src="https://demos.telerik.com/kendo-ui/content/web/foods/#= ProductID #.jpg" alt="#: ProductName # image" />
    <h3>#:ProductName#</h3>
    <p>#:kendo.toString(UnitPrice, "c")#</p>
    </div>
    </script>

    下面的示例演示了建议方法的完整实现。

    <div id="listView" style="max-height:400px;overflow:auto;"></div>
    <div class="k-pager-wrap">
    <div id="pager"></div>
    </div>
    
    <script type="text/x-kendo-tmpl" id="template">
    <div class="product">
    <img src="https://demos.telerik.com/kendo-ui/content/web/foods/#= ProductID #.jpg" alt="#: ProductName # image" />
    <h3>#:ProductName#</h3>
    <p>#:kendo.toString(UnitPrice, "c")#</p>
    </div>
    </script>
    
    <script type="text/x-kendo-tmpl" id="altTemplate">
    <div class="product alt">
    <img src="https://demos.telerik.com/kendo-ui/content/web/foods/#= ProductID #.jpg" alt="#: ProductName # image" />
    <h3>#:ProductName#</h3>
    <p>#:kendo.toString(UnitPrice, "c")#</p>
    </div>
    </script>
    
    <script>
    var dataSource = new kendo.data.DataSource({
    transport: {
    read: {
    url: "https://demos.telerik.com/kendo-ui/service/Products",
    dataType: "jsonp"
    }
    },
    pageSize: 3
    });
    
    $("#pager").kendoPager({
    dataSource: dataSource
    });
    
    $("#listView").kendoListView({
    dataSource: dataSource,
    template: kendo.template($("#template").html()),
    altTemplate: kendo.template($("#altTemplate").html()),
    });
    </script>
    
    <style>
    .alt { background-color: #EEE; }
    </style>

    了解最新Kendo UI最新资讯,请关注Telerik中文网!

  • 相关阅读:
    一个空类会生成哪些默认函数
    What is VMR(Video Mixing Render)From MSDN
    DirectX backface culling(背面剔除)
    D3DPOOL(资源池)
    两道概率题供大家周末把玩
    空间两点间的距离
    n != n, n == n
    C++默认参数
    D3DPT_TRIANGLELIST与D3DPT_TRIANGLESTRIP
    D3D中的设备丢失
  • 原文地址:https://www.cnblogs.com/AABBbaby/p/13850784.html
Copyright © 2020-2023  润新知