I had make an ajax request and during success i am changing my view
I am at home.js and use below code
I want to pass userid to list view. Please tell me how can i pass this value and in list view how can i get itCode:success: function(response) { if(response.message == 'success') { var userid = response.id; //Need to pass this parameter to list view var firststep = Ext.create('Myapp.view.list'); Ext.Viewport.setActiveItem(firststep); } }