mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
19 lines
447 B
JavaScript
19 lines
447 B
JavaScript
![]() |
/**
|
||
|
* Store for the Devices
|
||
|
*/
|
||
|
Ext.define('FHEM.store.DeviceStore', {
|
||
|
extend: 'Ext.data.Store',
|
||
|
model: 'FHEM.model.DeviceModel',
|
||
|
proxy: {
|
||
|
type: 'ajax',
|
||
|
method: 'POST',
|
||
|
url: '../../../fhem?cmd=get+' + FHEM.dblogname + '+-+webchart+""+""+""+getdevices&XHR=1',
|
||
|
reader: {
|
||
|
type: 'json',
|
||
|
root: 'data',
|
||
|
totalProperty: 'totalCount'
|
||
|
}
|
||
|
},
|
||
|
autoLoad: false
|
||
|
});
|