Hello,

I would like to know how (if possible) retrieve the extraParams list.
I would like building and URI for a window.open (for generating a XLS or PDF of a grid with the extraParams)

For the moment I do
Code:
GrantCycle.app.fnSetStoreExtraParam('filteryear2',1999,Ext.getCmp('gp_reports_lists').getStore());
var l_Store_Xtra = Ext.getCmp('gp_reports_lists').getStore().proxy.extraParams;
var l_URI ='_cfm/reports/reports_lists.cfm?output=xls&filteryear='+l_Store_Xtra.filteryear;
Ext.each(l_Store_Xtra, function(name, index) {
    console.log(name); /*return only one info?? see below*/
});
window.open(l_URI);
Console
Code:
Object
  • filteryear: null
  • filteryear2: 1999
  • __proto__: Object
So I need to know all the extraParams added which is not really a problem except that I want to create a generic function that will receive the extraParams, the base uri and open the right window.