diff options
author | Abyss777 <abyss@fox5.ru> | 2018-06-26 12:00:15 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2018-06-26 13:55:11 +0500 |
commit | 17157262fef1c046d116b2270f4e1d335fe9da1b (patch) | |
tree | 751583dde65b666e4ab249b26010b7bec6f279b6 /web/app/view/edit/Notifications.js | |
parent | d67213556dcc87453c0ad5cd6f9e8851c477a2f3 (diff) | |
download | trackermap-web-17157262fef1c046d116b2270f4e1d335fe9da1b.tar.gz trackermap-web-17157262fef1c046d116b2270f4e1d335fe9da1b.tar.bz2 trackermap-web-17157262fef1c046d116b2270f4e1d335fe9da1b.zip |
Implement refactored notifications
Diffstat (limited to 'web/app/view/edit/Notifications.js')
-rw-r--r-- | web/app/view/edit/Notifications.js | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/web/app/view/edit/Notifications.js b/web/app/view/edit/Notifications.js index 36206825..9e24d3d0 100644 --- a/web/app/view/edit/Notifications.js +++ b/web/app/view/edit/Notifications.js @@ -60,20 +60,25 @@ Ext.define('Traccar.view.edit.Notifications', { renderer: Traccar.AttributeFormatter.getFormatter('always'), filter: 'boolean' }, { - text: Strings.notificationWeb, - dataIndex: 'web', - renderer: Traccar.AttributeFormatter.getFormatter('web'), - filter: 'boolean' - }, { - text: Strings.notificationMail, - dataIndex: 'mail', - renderer: Traccar.AttributeFormatter.getFormatter('mail'), - filter: 'boolean' - }, { - text: Strings.notificationSms, - dataIndex: 'sms', - renderer: Traccar.AttributeFormatter.getFormatter('sms'), - filter: 'boolean' + text: Strings.notificationNotificators, + dataIndex: 'notificators', + flex: 2, + filter: { + type: 'arraylist', + idField: 'type', + labelField: 'name', + store: 'AllNotificators' + }, + renderer: function (value) { + var result = '', i, notificators; + if (value) { + notificators = value.split(/[ ,]+/).filter(Boolean); + for (i = 0; i < notificators.length; i++) { + result += Traccar.app.getNotificatorString(notificators[i]) + (i < notificators.length - 1 ? ', ' : ''); + } + } + return result; + } }, { text: Strings.sharedCalendar, dataIndex: 'calendarId', |