aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/MainMobile.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-11-07 06:07:18 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2016-11-07 06:07:18 +1300
commit33783a40ebe4af278bf4f9fa6ca7fa75452c1304 (patch)
tree27b803a30aaf27165e84a236e36f6e91db51d000 /web/app/view/MainMobile.js
parent941d09ba9d24fedeab268e9d109d5be9e8008282 (diff)
downloadetbsa-traccar-web-33783a40ebe4af278bf4f9fa6ca7fa75452c1304.tar.gz
etbsa-traccar-web-33783a40ebe4af278bf4f9fa6ca7fa75452c1304.tar.bz2
etbsa-traccar-web-33783a40ebe4af278bf4f9fa6ca7fa75452c1304.zip
Add reports to the mobile view
Diffstat (limited to 'web/app/view/MainMobile.js')
-rw-r--r--web/app/view/MainMobile.js61
1 files changed, 35 insertions, 26 deletions
diff --git a/web/app/view/MainMobile.js b/web/app/view/MainMobile.js
index e3e6742..2659e2f 100644
--- a/web/app/view/MainMobile.js
+++ b/web/app/view/MainMobile.js
@@ -19,40 +19,49 @@ Ext.define('Traccar.view.MainMobile', {
extend: 'Ext.container.Viewport',
alias: 'widget.mainMobile',
+ id: 'rootPanel',
+
requires: [
'Traccar.view.Devices',
'Traccar.view.State',
'Traccar.view.Map'
],
- layout: 'border',
-
- defaults: {
- header: false,
- collapsible: true,
- split: true
- },
+ layout: 'card',
items: [{
- region: 'east',
- xtype: 'stateView',
- title: Strings.stateTitle,
- flex: 4,
- collapsed: true,
- titleCollapse: true,
- floatable: false
- }, {
- region: 'center',
- xtype: 'mapView',
- collapsible: false,
- flex: 2
+ layout: 'border',
+
+ defaults: {
+ header: false,
+ collapsible: true,
+ split: true
+ },
+
+ items: [{
+ region: 'east',
+ xtype: 'stateView',
+ title: Strings.stateTitle,
+ flex: 4,
+ collapsed: true,
+ collapseMode: 'mini',
+ titleCollapse: true,
+ floatable: false
+ }, {
+ region: 'center',
+ xtype: 'mapView',
+ collapsible: false,
+ flex: 2
+ }, {
+ region: 'south',
+ xtype: 'devicesView',
+ title: Strings.deviceTitle,
+ flex: 1,
+ collapsed: true,
+ titleCollapse: true,
+ floatable: false
+ }]
}, {
- region: 'south',
- xtype: 'devicesView',
- title: Strings.deviceTitle,
- flex: 1,
- collapsed: true,
- titleCollapse: true,
- floatable: false
+ xtype: 'reportView'
}]
});