I am working on developing a custom rally report which has got several views - these views sit in the combo box - to my surprise, I have noticed that on the page load only 200 are retrieved but I have 300 views for this report. I haven't got any help from the documentation. The following is what I am trying
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)
},
};
},
How can I retrieve the rest of the views? When I set pagesize: 200 I am able to see the pagination bar at the bottom but this seems to be bombing as soon as I click the next arrow