0

我正在使用剑道网格。我已经定义了,

$("#grid").kendoGrid({
            dataSource:datasource, 
           pageable: true,
            columns: [
                    { field: "ProductId", title: "ProductId" },
                    { field: "ProductType", title: "ProductType" },
                    { field: "Name", title: "Name" },
                    { field: "Created", title: "Created" }
                ],
          });
    });

我可以在我的网格中显示寻呼机。但是我想要的是如果网格中的记录超过 20,那么我只想显示寻呼机,否则不想显示寻呼机,你能告诉我怎么做这个?

4

1 回答 1

1

基本上不支持这个。您可以尝试使用一些 JavaScript 来解决它。例如,初始化 Grid 后的以下脚本应该实现类似的行为:

$(function(){
     if($('#gridName').data().kendoGrid.dataSource.total()>20){
          $('#gridName .k-grid-pager').hide();
     }
})
于 2013-04-12T05:39:17.960 回答