Commit 88902e28 by Uros Spasojevic

added various stuff

parent 81fc8662
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -2,24 +2,25 @@ Ext.define('Evoksi.view.evoksi.EvoksiModel', {
extend: 'Ext.app.ViewModel',
alias: 'viewmodel.evoksi',
stores: {
myStore:{
StoreId: 'myStore',
fields: [
'name', 'date'
],
myStore: {
StoreId: 'myStore',
fields: [
'name', 'date', 'time'
],
data: {
items: [
{name: 'aaa', date: 'sdfgsdfg'}
]
},
data: {
items: [
{name: 'aaa', date: 'sdfgsdfg', time: 'fsadfsa'}
]
},
proxy: {
type: 'memory',
reader: {
type: 'json',
rootProperty: 'items'
proxy: {
type: 'memory',
reader: {
type: 'json',
rootProperty: 'items'
}
}
}}
}
}
});
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment