diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-09-01 23:43:48 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-09-01 23:43:48 (GMT) |
commit | f66659f20d214022ed40faaf9689fdd005b28bf4 (patch) | |
tree | 33366ca3b5ea0f5930a7a13444a1f246da17dcef /public_html/js | |
parent | 7d5258a69c6c95016bc01b1d35d7cd7f6ea4ba3c (diff) | |
download | kolab-wap-f66659f20d214022ed40faaf9689fdd005b28bf4.tar.gz |
Resolve #984:
- Fix post add/edit/delete UI update by setting back the watermark after the action has been executed.
- List the contents of the directory information tree before considering adding a form for users logged in that can add entries
Diffstat (limited to 'public_html/js')
-rw-r--r-- | public_html/js/kolab_admin.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/public_html/js/kolab_admin.js b/public_html/js/kolab_admin.js index bb6ddc3..be08f8a 100644 --- a/public_html/js/kolab_admin.js +++ b/public_html/js/kolab_admin.js @@ -1089,6 +1089,7 @@ function kolab_admin() this.display_message('domain.add.success'); this.command('domain.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.domain_edit_response = function(response) @@ -1098,6 +1099,7 @@ function kolab_admin() this.display_message('domain.edit.success'); this.command('domain.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.user_info = function(id) @@ -1135,6 +1137,7 @@ function kolab_admin() this.display_message('user.delete.success'); this.command('user.list', {page: page}); + this.set_watermark('taskcontent'); }; this.user_save = function(reload, section) @@ -1174,6 +1177,7 @@ function kolab_admin() this.display_message('user.add.success'); this.command('user.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.user_edit_response = function(response) @@ -1183,6 +1187,7 @@ function kolab_admin() this.display_message('user.edit.success'); this.command('user.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.group_info = function(id) @@ -1220,6 +1225,7 @@ function kolab_admin() this.display_message('group.delete.success'); this.command('group.list', {page: page}); + this.set_watermark('taskcontent'); }; this.group_save = function(reload, section) @@ -1251,6 +1257,7 @@ function kolab_admin() this.display_message('group.add.success'); this.command('group.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.group_edit_response = function(response) @@ -1260,6 +1267,7 @@ function kolab_admin() this.display_message('group.edit.success'); this.command('group.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.resource_info = function(id) @@ -1297,6 +1305,7 @@ function kolab_admin() this.display_message('resource.delete.success'); this.command('resource.list', {page: page}); + this.set_watermark('taskcontent'); }; this.resource_save = function(reload, section) @@ -1328,6 +1337,7 @@ function kolab_admin() this.display_message('resource.add.success'); this.command('resource.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.resource_edit_response = function(response) @@ -1337,6 +1347,7 @@ function kolab_admin() this.display_message('resource.edit.success'); this.command('resource.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.role_info = function(id) @@ -1374,6 +1385,7 @@ function kolab_admin() this.display_message('role.delete.success'); this.command('role.list', {page: page}); + this.set_watermark('taskcontent'); }; this.role_save = function(reload, section) @@ -1405,6 +1417,7 @@ function kolab_admin() this.display_message('role.add.success'); this.command('role.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.role_edit_response = function(response) @@ -1414,6 +1427,7 @@ function kolab_admin() this.display_message('role.edit.success'); this.command('role.list', {page: this.env.list_page}); + this.set_watermark('taskcontent'); }; this.generate_password = function(fieldname) |