cherryext/orun/extjs/static/extjs-upload-widget/lib/upload/Store.js

30 lines
589 B
JavaScript
Raw Normal View History

2018-08-15 11:12:01 +03:00
Ext.define('Ext.ux.upload.Store', {
extend : 'Ext.data.Store',
fields : [
{
name : 'filename',
type : 'string'
}, {
name : 'size',
type : 'integer'
}, {
name : 'type',
type : 'string'
}, {
name : 'status',
type : 'string'
}, {
name : 'message',
type : 'string'
}
],
proxy : {
type : 'memory',
reader : {
type : 'array',
idProperty : 'filename'
}
}
});