我正在使用剑道网格。我已经定义了,
$("#grid").kendoGrid({
dataSource:datasource,
pageable: true,
columns: [
{ field: "ProductId", title: "ProductId" },
{ field: "ProductType", title: "ProductType" },
{ field: "Name", title: "Name" },
{ field: "Created", title: "Created" }
],
});
});
我可以在我的网格中显示寻呼机。但是我想要的是如果网格中的记录超过 20,那么我只想显示寻呼机,否则不想显示寻呼机,你能告诉我怎么做这个?