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.
是否可用于 rallytreegrid 的 showPagingToolbar 配置选项?此配置选项是为 rallygrid xtype 列出的,但似乎不适用于 rallytreegrid。
看起来该配置不存在,您是对的。渲染网格后,您应该能够通过隐藏它来解决它。
创建树形网格时,只需将以下事件侦听器配置添加到现有配置中:
listeners: { afterrender: function(treegrid) { treegrid.down('#pagingToolbar').hide(); } }