So I have a view, and a controller linked to that view, and I would like to dynamically assign values to a xtype item in the view via store.
So for example, I would like dynamically setup layouts
(please have a look at the proveded code) and urls
items: [
{
itemId: 'nav_home',
id: 'homeView',
layout: "{layout}",
items: [{
xtype: 'articlelist',
id: 'latestNews',
url: {url},
}
],
},
Could anyone lead me how to approach this task?
Thanks