hedera-web/forms/admin/users/users.js

30 lines
625 B
JavaScript
Raw Normal View History

2022-05-05 13:56:17 +00:00
Hedera.Users = new Class({
2016-09-26 09:28:47 +00:00
Extends: Hedera.Form
2022-05-05 13:56:17 +00:00
,onAccessLogClick: function(button, form) {
this.hash.set({
2015-02-01 03:21:54 +00:00
'form': 'admin/access-log'
2022-05-05 13:56:17 +00:00
,'user': form.get('id')
});
}
2022-05-05 13:56:17 +00:00
,rendererFunc: function(scope, form) {
2017-11-27 15:27:13 +00:00
var isEnabled = form.get('active')
scope.$('disabled').style.display = isEnabled ?
'none' : 'block';
scope.$('impersonate').node.style.display = isEnabled ?
'block' : 'none';
}
2017-11-27 13:53:38 +00:00
2022-05-05 13:56:17 +00:00
,onChangeUserClick: function(button, form) {
this.gui.supplantUser(form.get('name'),
this.onUserSupplant.bind(this));
}
2022-05-05 13:56:17 +00:00
,onUserSupplant: function() {
this.hash.set({form: 'ecomerce/orders'});
}
});