Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何隐藏 KendoUI 网格的工具栏(寻呼机)?
任何帮助,将不胜感激。
谢谢你。
$("#grid").kendoGrid({ dataBound: function() { $("#grid .k-grid-pager").css('display','none'); } });
如果要显示pageSize记录数但没有分页,则只需pageSize在 dataSource 中定义,但pageable在网格定义中为 false:
pageSize
pageable
$("#grid").kendoGrid({ ... pageable: false });