日期:2014-05-16  浏览次数:20369 次

Ext 3.1 怎么重写 pagingtoolbar 隐藏刷新按钮?
就是grid下面分页工具栏上的那个刷新按钮要隐藏掉,网上说重写 pagingtoolbar 
具体怎么重写呀?有做过的吗?

------解决方案--------------------
引用:
就是grid下面分页工具栏上的那个刷新按钮要隐藏掉,网上说重写 pagingtoolbar 
具体怎么重写呀?有做过的吗?


隐藏掉:
bbar: new Ext.PagingToolbar({
            pageSize: 25,
            store: store,
            displayInfo: true,
            displayMsg: 'Displaying topics {0} - {1} of {2}',
            emptyMsg: "No topics to display",
            onFirstLayout : function(){//增加这个配置
            if(this.dsLoaded){
                this.onLoad.apply(this, this.dsLoaded);
            }
            if(this.rendered && this.refresh){
                this.refresh.hide();
            }
        }
        })

这是3.4的方式,3.1估计也一样,你先试试。