PingUtil.js
498 Bytes
Ext.define('App.model.PingUtil', {
extend : 'Ext.data.Model',
fields : [
{
name : 'host',
type : 'string'
},
{
name : 'result',
type : 'string'
}
],
autoLoad: true,
autoSync: true,
// alias: 'store.devices',
proxy : {
type : 'ajax',
api: {
read: 'api/mainconfig/get'
},
reader : {
type : 'json'
}
}
});