diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-06-19 23:45:00 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-19 23:45:00 +1200 |
commit | 5a6044faac45b377efabe363655ec21790bd955b (patch) | |
tree | e5d60feb3a6d17775c4b63379920d9ff88aaa379 /web/app/view/edit/Geofences.js | |
parent | f3ce72afbd49ccde94178158147de7b378128a55 (diff) | |
parent | 56a5de3dc50e438884c5636c11f31e48bf19a15e (diff) | |
download | trackermap-web-5a6044faac45b377efabe363655ec21790bd955b.tar.gz trackermap-web-5a6044faac45b377efabe363655ec21790bd955b.tar.bz2 trackermap-web-5a6044faac45b377efabe363655ec21790bd955b.zip |
Merge pull request #507 from Abyss777/column_filters
Column filters to most windows
Diffstat (limited to 'web/app/view/edit/Geofences.js')
-rw-r--r-- | web/app/view/edit/Geofences.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/web/app/view/edit/Geofences.js b/web/app/view/edit/Geofences.js index 8ca9c31c..51fa7686 100644 --- a/web/app/view/edit/Geofences.js +++ b/web/app/view/edit/Geofences.js @@ -20,10 +20,13 @@ Ext.define('Traccar.view.edit.Geofences', { xtype: 'geofencesView', requires: [ + 'Ext.grid.filters.Filters', 'Traccar.view.edit.GeofencesController', 'Traccar.view.edit.Toolbar' ], + plugins: 'gridfilters', + controller: 'geofences', store: 'Geofences', @@ -42,10 +45,12 @@ Ext.define('Traccar.view.edit.Geofences', { }, items: [{ text: Strings.sharedName, - dataIndex: 'name' + dataIndex: 'name', + filter: 'string' }, { text: Strings.sharedDescription, - dataIndex: 'description' + dataIndex: 'description', + filter: 'string' }] } }); |