diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-05 19:18:58 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-05 19:18:58 +1200 |
commit | 61bd26d530710e74ef1c0dfd6920b9c1d27cfdd5 (patch) | |
tree | 92638aecdc7e10b0eb745954304798cce3f9ff3d /web/app/view/user/UserDialogController.js | |
parent | c2afe93f1443181bc7bcce2df708a88c331b8800 (diff) | |
download | trackermap-server-61bd26d530710e74ef1c0dfd6920b9c1d27cfdd5.tar.gz trackermap-server-61bd26d530710e74ef1c0dfd6920b9c1d27cfdd5.tar.bz2 trackermap-server-61bd26d530710e74ef1c0dfd6920b9c1d27cfdd5.zip |
Add user account dialog
Diffstat (limited to 'web/app/view/user/UserDialogController.js')
-rw-r--r-- | web/app/view/user/UserDialogController.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/web/app/view/user/UserDialogController.js b/web/app/view/user/UserDialogController.js new file mode 100644 index 000000000..4c6b6c42f --- /dev/null +++ b/web/app/view/user/UserDialogController.js @@ -0,0 +1,32 @@ +/* + * 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.user.UserDialogController', { + extend: 'Ext.app.ViewController', + alias: 'controller.userdialog', + + onSaveClick: function(button) { + var dialog = button.up('window').down('form'); + dialog.updateRecord(); + dialog.getRecord().save(); + button.up('window').close(); + }, + + onCancelClick: function(button) { + button.up('window').close(); + } + +}); |