1

剣道グリッドのフッターに、「ページあたりのアイテム数」と「アイテム」を表示します。ローカライズ用のリソース ファイルにそれらを配置する方法。ありがとう、

4

3 に答える 3

4

次のようにテキストをローカライズまたは変更できます

 pageable: {
  messages: {
    display: "{0} - {1} of {2} items", //{0} is the index of the first record on the page, {1} - index of the last record on the page, {2} is the total amount of records
    empty: "No items to display",
    page: "Page",
    of: "of {0}", //{0} is total amount of pages
    itemsPerPage: "items per page",
    first: "Go to the first page",
    previous: "Go to the previous page",
    next: "Go to the next page",
    last: "Go to the last page",
    refresh: "Refresh"
   }
}

参照http://demos.telerik.com/kendo-ui/grid/localization

于 2015-05-05T14:31:38.803 に答える
3

グリッドを構築し、フィルタリング、列名などのプロパティを設定する場合、カスタム剣道グリッド メッセージを次のように上書きできます。

 gridbuilder.Pageable().Messages(m => {
                     m.Display("{0} - {1} of {2} My customized items");
                     m.Empty("No result found custom msg");
                     })

Display および Empty、ページごとの項目などの内容は、リソース ファイルに簡単に移動して、リソース ファイルから読み取ることができます。

于 2013-06-26T18:53:35.803 に答える