私は剣道グリッドを使用しています。
$("#grid").kendoGrid({
dataSource:datasource,
pageable: true,
columns: [
{ field: "ProductId", title: "ProductId" },
{ field: "ProductType", title: "ProductType" },
{ field: "Name", title: "Name" },
{ field: "Created", title: "Created" }
],
});
});
私は自分のグリッドにページャーを表示することができます.しかし、私が望むのは、グリッド内のレコードが20を超える場合、ページャーを表示したいだけで、それ以外の場合はページャーを表示したくないのですが、方法を教えてください.これ?