gpt4 book ai didi

extjs - 如何覆盖 PagingToolbar 中的刷新操作

转载 作者:行者123 更新时间:2023-12-04 10:01:09 25 4
gpt4 key购买 nike

我需要根据 Paging 工具栏中的刷新按钮编写一些操作。如何覆盖 doRefresh()方法?

this.bbar=Ext.create('Ext.PagingToolbar', {
store: store,
displayInfo: true,
displayMsg: 'Displaying records {0} - {1} of {2}',
emptyMsg: "No topics to display"
});

最佳答案

如果你只想做一次使用

Ext.create('Ext.PagingToolbar', {
store: store,
displayInfo: true,
displayMsg: 'Displaying records {0} - {1} of {2}',
emptyMsg: "No topics to display",
doRefresh : function(){
// Keep or remove these code
var me = this,
current = me.store.currentPage;

if (me.fireEvent('beforechange', me, current) !== false) {
me.store.loadPage(current);
}
}
});

或所有页面栏。
Ext.PagingToolbar.prototype.doRefresh = function() {
// Keep or remove these code
var me = this,
current = me.store.currentPage;

if (me.fireEvent('beforechange', me, current) !== false) {
me.store.loadPage(current);
}
}

请注意,如果您这样做,您必须在每次更新 EXTJS 核心时仔细检查它以确保功能!

关于extjs - 如何覆盖 PagingToolbar 中的刷新操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13839444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com