-
4 Oct 2012 6:50 AM #1
Unanswered: how to pass values from one view to other view
Unanswered: how to pass values from one view to other view
how to pass values from one view to other view in secha touch
-
4 Oct 2012 1:18 PM #2
Can you explain what you are trying to do more? It is hard to offer advice when it is so vague.
-
4 Oct 2012 9:47 PM #3
how to pass list item from one view to other view
how to pass list item from one view to other view
i have a list control. I want to pass the selected list item from that view to another view.
Thanks in advance.
-
4 Oct 2012 11:17 PM #4
This code is in my itemtap function in controller.Code:var id = record.get('articlesubgroup_id'); var me = this; if(record) { store = Ext.data.StoreManager.lookup('ArticleStore'); store.getProxy().setUrl('json/article.jsp?id='+id); store.load(); details = Ext.create('Globis.view.ArticleContainer', {title: 'Article'}); me.getMainNav().push(details); }
I change the url of my store to show just the information I need.
Alternatively you can pass your parameters via the extraParams property.
These extra parameters are placed as url parameters just like that.
extraParams: {id:10,name:me}
the url will look like : someurl?id=10&name=me
Hope this helped.


Reply With Quote