diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-03-19 20:50:54 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-19 20:50:54 +1300 |
commit | 4e7d2b8fdb41390205d69997d61db536545f5564 (patch) | |
tree | aa8355566da6cf6064b4119c07ecc39feae326d7 /web/app/view/edit/Geofences.js | |
parent | 464aa58c49ac5e04d419a68b6ee5bcf9d0c36798 (diff) | |
parent | ebccd5864e93312321c0226d603e453f6cdeec25 (diff) | |
download | trackermap-web-4e7d2b8fdb41390205d69997d61db536545f5564.tar.gz trackermap-web-4e7d2b8fdb41390205d69997d61db536545f5564.tar.bz2 trackermap-web-4e7d2b8fdb41390205d69997d61db536545f5564.zip |
Merge pull request #655 from Abyss777/calendar_column
Add Calendar column to some grids
Diffstat (limited to 'web/app/view/edit/Geofences.js')
-rw-r--r-- | web/app/view/edit/Geofences.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/web/app/view/edit/Geofences.js b/web/app/view/edit/Geofences.js index 9c564bc3..0e1e6773 100644 --- a/web/app/view/edit/Geofences.js +++ b/web/app/view/edit/Geofences.js @@ -1,5 +1,5 @@ /* - * Copyright 2016 Anton Tananaev (anton@traccar.org) + * Copyright 2016 - 2018 Anton Tananaev (anton@traccar.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -48,6 +48,16 @@ Ext.define('Traccar.view.edit.Geofences', { text: Strings.sharedDescription, dataIndex: 'description', filter: 'string' + }, { + text: Strings.sharedCalendar, + dataIndex: 'calendarId', + hidden: true, + filter: { + type: 'list', + labelField: 'name', + store: 'AllCalendars' + }, + renderer: Traccar.AttributeFormatter.getFormatter('calendarId') }] } }); |