I have initialized some variables in the Extjs controller. When I click on a row of a grid then values of some attribute will be displayed. Below code is working fine if I want to display in console. but i want to send the variables in another jsp page page.
this is my controller...
selectionchange : function(){
var grid = Ext.getCmp('lineGridChart');
var selectedRecords= grid.getView().getSelectionModel().getSelection();
myWTN = selectedRecords[0].get('wtn');
myMOU = selectedRecords[0].get('avg');
myWING = selectedRecords[0].get('wing');
myPDU = selectedRecords[0].get('pdu');
},
I want to send the values of the variables to the jsp page... please help..