BUG 0000 Changes in new and edit user SOLVED

- Also changes suggested by julio cesar
This commit is contained in:
Alvaro Campos
2012-06-20 19:00:41 -04:00
parent f289ad4ed4
commit e230492bf9
6 changed files with 15 additions and 9 deletions

View File

@@ -403,7 +403,7 @@ DoNothing = function(){};
//Open New User Form
NewUserAction = function(){
location.href = 'usersNew';
location.href = 'usersNew?MODE=new';
};
//Delete User Action
@@ -469,7 +469,7 @@ SummaryTabOpen = function(){
EditUserAction = function(){
var uid = infoGrid.getSelectionModel().getSelected();
if (uid) {
location.href = 'usersEdit?USR_UID=' + uid.data.USR_UID+'&USR_AUTH_SOURCE=' + uid.data.USR_AUTH_SOURCE;
location.href = 'usersEdit?USR_UID=' + uid.data.USR_UID+'&USR_AUTH_SOURCE=' + uid.data.USR_AUTH_SOURCE+'&MODE=edit';
}
};