diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-07 16:41:46 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-07 16:41:46 +1200 |
commit | 4a91ebb7535b8e199b8c9cce041757eeedd350ce (patch) | |
tree | 2a02d2937732ba6960cf1c834192d43abbec4597 /web/app/view/state/State.js | |
parent | 1680d3d0234d9d1e2152e644882a9c1fb39a8a47 (diff) | |
download | trackermap-server-4a91ebb7535b8e199b8c9cce041757eeedd350ce.tar.gz trackermap-server-4a91ebb7535b8e199b8c9cce041757eeedd350ce.tar.bz2 trackermap-server-4a91ebb7535b8e199b8c9cce041757eeedd350ce.zip |
Add device status panel
Diffstat (limited to 'web/app/view/state/State.js')
-rw-r--r-- | web/app/view/state/State.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/web/app/view/state/State.js b/web/app/view/state/State.js new file mode 100644 index 000000000..de7cab87f --- /dev/null +++ b/web/app/view/state/State.js @@ -0,0 +1,35 @@ +/* + * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Ext.define('Traccar.view.state.State', { + extend: 'Ext.grid.Panel', + xtype: 'state-view', + + requires: [ + 'Traccar.view.state.StateController' + ], + + controller: 'state', + //store: 'Parameters', + + title: strings.state_title, + + columns: [ + { text: strings.state_name, dataIndex: 'name', flex: 1 }, + { text: strings.state_value, dataIndex: 'value', flex: 1 } + ] + +}); |