我正在开发一个自定义集会报告,该报告有几个视图 - 这些视图位于组合框中 - 令我惊讶的是,我注意到在页面加载时仅检索了 200 个,但我有 300 个此报告的视图。我没有从文档中得到任何帮助。以下是我正在尝试的
getSharedViewConfig() {
return {
ptype: 'rallygridboardsharedviewcontrol',
sharedViewConfig: {
enableUrlSharing: this.isFullPageApp !== false,
stateful: true,
width: 300,
pageSize: 200,
limit: Infinity,
queryMode: 'remote',
stateId: this.getContext().getScopedStateId('views'),
stateEvents: ['select', 'beforedestroy'],
suppressViewNotFoundNotification: this._suppressViewNotFoundNotification,
emptyText: 'Select or Add Saved View...',
additionalFilters: [this.piTypePicker.getCurrentViewFilter()],
autoExpand: true,
defaultViews: _.map(this._getDefaultViews(), (view) => {
Ext.apply(view, {
Value: Ext.JSON.encode(view.Value, true)
});
return view;
}, this)
},
};
},
如何检索其余视图?当我设置 pagesize: 200 时,我可以看到底部的分页栏,但是当我单击下一个箭头时,这似乎正在爆炸