Unanswered: List item(for the new screen) default selection when the screen is pushed
Unanswered: List item(for the new screen) default selection when the screen is pushed
Hi,
I have a list in which when I select a list item the screen is pushed to a new screen.The new screen also contains a list(the same list as in first screen).So I want to get the selected list item from the first screen as the default selection for the list in the second screen when the first screen is pushed to the second screen.
Basically the following line of code should do the work but not sure in which event it should be placed and the controller of which screen(ryt now I have put the code in the controller of first screen):
var selecteditem=Ext.getCmp('accountorderslist').getSelection();
Ext.getCmp('vieworderslist').select(selecteditem);