Unable to see new user after I create one
Brought to you by:
jcmalapert,
sitools2
As a administrator, I add a new user.
When I click on OK, the window is closed but the grid is not refreshed and I can't see my new user.
There seems to be a javascript error.
Note that the user is properly created on the server and can be seen after a manual refresh.
The grid was effectively not refreshed. To fix the problem :
In the file UserPropPanel.js (/workspace/client-admin/js/usergroups/)
Replace line 317 :
Ext.defer(this.store.reload, 1000, this);
By :
Ext.defer(function () {
this.store.reload();
}, 1000, this);