20

免責事項:これはもともとKendoUI フォーラムに投稿されたものですが、回答はありません。

ListView のテンプレートで要素の条件付き書式を使用しようとしています。この部分ビューでは、共有 DataSource を使用して、Pager、2 カード ListView、および前述のテンプレートを介したナビゲーションを可能にします。関連するテンプレート コードは次のとおりです。

<script id="contact-template" type="text/x-kendo-template">
<div id="ContactCard" class="IsActive${IsActive}">
    #if (Salutation === null || Salutation === '') {#<h4>#}else{#<h4>#=Salutation# #}##=FirstName# #=LastName#</h4>
    #if (Title === null || Title === '') {##}else{#<p>#=Title#</p>#}#
    <br />
    #if (Email == 0 || Email === '') {##}else{#<p><a href='mailto:#=LastName#,%20#=FirstName#%20<#=Email#>'>#=Email#</a></p>#}#
    #if (Phone === null  || Phone === '') {##}else{#<p>#=Phone##if (Extension === null || Extension === '') {#</p>#}else{# ext. #=Extension#</p>#}##}#
</div>

私はこのコードを生成するいくつかの異なる方法を試しました。その中には、単純な if のような反転チェックが含まif (Salutation != null && Salutation != '')れていましたが、役に立ちませんでした。#if セクション内から DataSource のデータを参照する方法について何か不足していると思いますか? 私は何かを試しましif (#=Salutation# != null && #=Salutation# != '')たが、それは悪いテンプレートエラーを投げました.

出力は次のとおりです。

出力

注: ひどいフォーマットは無視してください。プレスタイリングです。

参考までに、ファイル全体を次に示します。

@model int   @* accountId  *@

<article id="contactArticle">
    <div id="contactList"></div>
    <footer><span id="pagerTotal"></span><a href="#" class="k-link" id="pageLeft" onclick="pageLeftOne()"><</a><div id="pager"></div><a href="#" class="k-link" id="pageRight" onclick="pageRightOne()">></a></footer>
</article>
<script id="contact-template" type="text/x-kendo-template">
    <div id="ContactCard" class="IsActive${IsActive}">
        #if (Salutation === null || Salutation === '') {#<h4>#}else{#<h4>#=Salutation# #}##=FirstName# #=LastName#</h4>
        #if (Title === null || Title === '') {##}else{#<p>#=Title#</p>#}#
        <br />
        #if (Email == 0 || Email === '') {##}else{#<p><a href='mailto:#=LastName#,%20#=FirstName#%20<#=Email#>'>#=Email#</a></p>#}#
        #if (Phone === null  || Phone === '') {##}else{#<p>#=Phone##if (Extension === null || Extension === '') {#</p>#}else{# ext. #=Extension#</p>#}##}#
    </div>
</script>
<script type="text/javascript">
    var currentPage = 1;
    var pages;
    var contactDataSource;

    //SNIP//   

    $(document).ready(function() {
        var init = 1;
        contactDataSource = new kendo.data.DataSource({
            transport: {
                read: {
                    url: '@Url.Action("ContactPager", "Contact")',
                    dataType: "json",
                    type: "POST",
                    timeout: 2000,
                    data: {
                        accountId: @Model
                    }
                }
            },
            schema: {
                data: "data",
                total: "total",
                type: "json",
                model: {
                    fields: {
                        Id: { type: "string"},
                        FirstName: { type: "string" },
                        LastName: { type: "string"},
                        Title: { type: "string", defaultValue: ''},
                        Salutation: { type: "string", defaultValue: ''},
                        Extension: { type: "string", defaultValue: ''},
                        Phone: { type: "string", defaultValue: ''},
                        Email: { type: "string", defaultValue: ''},
                        IsActive: {type: "boolean"} //,
                        //ReceivesDistributionEmails: {type: "boolean"}
                    }
                }
            },
            pageSize: 2
        });

        contactDataSource.read();

        contactDataSource.bind("change", function(e) {
            if (init) {
                init = 0;
                if (contactDataSource.total() < 1) {
                    //SNIP

                } else {
                    $("#pager").kendoPager({
                        dataSource: contactDataSource,
                        buttonCount: 5
                    });
                    //SNIP//     
                    pages = $("#pager").data("kendoPager").dataSource.totalPages();

                    $("#contactList").kendoListView({
                        dataSource: contactDataSource,
                        pageable: true,
                        template: kendo.template($("#contact-template").html())
                    });
                    kendo.init($("#contactList"));
                }
            }
        });
    });

</script>

TL;DR:データソース メンバーの値に基づいてコンテンツを構築するための Kendo テンプレートを取得するにはどうすればよいですか?

4

4 に答える 4

28

null を一重引用符で囲んでみてください。

...
#if (Title != 'null' && Title != '')  { #
     <p>#=Title# </p> 
# } #
...

タグは残されていますが、この表記法を代替として使用できます。達成しようとしているフォーマットの種類に応じて機能する可能性があります。

<p>${ Title != 'null' && Title != '' ? Title : ''} </p>
于 2012-06-14T19:39:56.873 に答える
4

これが古いことは知っていますが、私が使用した別の解決策は次のとおりです。

@(Html.Kendo().Grid<Object>()
    .Name("dataGrid")
    .DataSource(ds =>
        ds.Ajax()
            .Read(r => r.Action("Action", "Controller", new { area = "area" }))
            .ServerOperation(true)
            .PageSize(50)
            )
    .Columns(cols =>
    {
        cols.Bound(t => t.Property);
    })
    .Resizable(resizeable => resizeable.Columns(true))
    .Scrollable(t => t.Virtual(true))
    .Sortable()
    .Filterable()
    .ColumnMenu()
    .HtmlAttributes(new { style = "height:98%;width:100%;", @class="cssClass" })
    .Events(e => e.DataBound("onDataBound"))
    .Deferred()
    .ClientRowTemplate("<tr>" +
            "#=checkNull(Property)#" +
            "</tr>")
 )

次に、プロパティをチェックするJavaScript関数を追加できます。

   function checkNull(item) {
        return item === null ? "" : item;
    }

かなりイライラしたので、他の人の助けになるかもしれません。明らかに、関数を変更して、好きなものをチェックできます。

于 2014-08-07T16:00:43.517 に答える
1

ショートカットの場合は、次を使用できます。

# if(property){ #
#: property #
# } #

値に応じて表示/非表示したい場合(空文字列やnull以外)

于 2015-04-28T12:47:30.993 に答える