web-dev-qa-db-ja.com

剣道UIグリッドでページサイズを動的に変更する方法

1000以上のデータを表示するKendo UIグリッドがあります。 15、25、50、100など、さまざまなページサイズのドロップダウンリストもあります。ページサイズを選択したら、Kendo UIグリッドのページサイズをどのように変更できますか?

18
Ashmah

コンボボックス変更イベントでページサイズを設定できます。 (また JSBinの例 も参照してください。)

$("#comboBox").kendoComboBox({
    dataTextField: "text",
    dataValueField: "value",
    dataSource: [
        { text: 1 },
        { text: 2 },
        { text: 3 },
        { text: 4 },
        { text: 5 }
    ],
    change: function(e) {
      var grid = $("#grid").data("kendoGrid");
      grid.dataSource.pageSize(parseInt(this.value()));  // this.value() being the value selected in Combo
    }
});
17
Daniel

ASP.NET MVCヘルパーを使用した最新のものです

.Pageable(pager => pager.PageSizes(new int[] {20, 50, 100})) // Enable paging
21
Rick Glos

また、jsで以下を実行することにより、グリッドの最新バージョンに組み込まれています

pageable: {
    pageSizes: [10, 25, 50, 100]
}

http://docs.kendoui.c​​om/api/web/pager

14
Cragly

リックは良い説明でそれを伝えました、誰かがここでどこで行われるべきかを見逃した場合のより詳しい説明は、画面の短いところでどこで行われるべきかを知るためのコードです snap

@(Html.Kendo().Grid(Model)
      .Name("SiteUserGrid")
      .Columns(columns =>
          {
              columns.Bound(u => u.LastName).Title("Last Name");
              columns.Bound(u => u.FirstName).Title("First Name");
              columns.Bound(u => u.UserName).Title("User Name");
              columns.Bound(u => u.EmailAddress).Title("Email Address");
              columns.Bound(u => u.AccessLevel).Title("Access Level");
              columns.Bound(u => u.Status).Title("Status");
              columns.Bound(u => u.UserId).Filterable(f => f.Enabled(false)).ClientTemplate(actionColumnTemplate).Title("Action").Sortable(false).Width(190);
          })
      .Pageable(pageable => pageable.ButtonCount(10))

.Pageable(pager => pager.PageSizes(new int [] {5,10,15,20,30,50,100}))

      .Selectable(selectable => selectable.Mode(GridSelectionMode.Single))
      .Sortable()
      .Filterable(filterable => filterable
                                    .Extra(false)
                                    .Operators(operators => operators
                                                                .ForString(str => str.Clear()
                                                                                     .StartsWith("Starts with")
                                                                                     .Contains("Contains")
                                                                                     .IsEqualTo("Is equal to")
                                                                ))

お役に立てれば

2
Dare Devs

展開するには Rick Glosの答え

Pageable PageSizesを汎用オブジェクトの配列に設定できるため、JavaScriptでpageSizesを設定しなくても「すべて」オプションを使用できます。

.Pageable(pager => pager.PageSizes(new object[] {20, 50, 100, "All"}))
2
nbrosz

http://docs.kendoui.c​​om/api/wrappers/php/Kendo/UI/GridPageable

$pageable = new \Kendo\UI\GridPageable();
$pageable->pageSizes(array(20,50,100));
1
Peter Truong