1

With the particular database server we are using it's just as expensive to run a COUNT() query as it is to run the actual query, so I'd prefer to not display the count at all.

Normally, outside of kendo grid, I would just display previous and next buttons but not show the total count. Is it possible to achieve something similar with Kendo Grid?

4

1 に答える 1

4

剣道グリッド オプションで、ページング可能なオブジェクトの数値プロパティを設定します。これにより、数字ボタンが無効になります。

$("#grid").kendoGrid({
  pageable: {
    numeric: false
  }
});

詳細については、 http://docs.kendoui.c​​om/api/web/grid#configuration-pageable.numericを参照してください

データを特定のカウントに設定するには、剣道データソース オプションで schema.total 関数を使用して大きな値を返し、十分なページ データを取得します。

var dataSource = new kendo.data.DataSource({
  schema: {
    total: function(response) {
      return 100000000;
    }
  }
});
于 2013-06-26T04:22:43.987 に答える