Hello world 
I have some unknown bug.
In MVC Application I've define TreeStore with model:
Code:
Ext.define('ASV.model.documents',{
extend: 'Ext.data.Model',
fields:[
{name: 'id',type:'int'},
{name: 'text', type:'string'},
{name: 'action', type:'string'},
{name: 'leaf', type:'bool'}
]
});
And assigned it to TreeStore:
Code:
Ext.define('ASV.store.documents',{
extend: 'Ext.data.TreeStore',
autoLoad:true,
model:'documents',
.........
When I'm getting data from json response from server all field are assigned normally except custom "action' field.
I've googled and found this topic: http://www.sencha.com/forum/showthre...om-a-tree-node, but that is not my case.