Merged in dheeyi/processmaker/PM-1501 (pull request #1420)
PM-1501 16756: Error en mensaje al eliminar una fila de la grilla IE 10
This commit is contained in:
@@ -130,7 +130,6 @@
|
||||
}
|
||||
|
||||
function dynaformDelete ( uid,proUid ){
|
||||
|
||||
isokDependent = ajax_function('@G::encryptlink(@#dynaformsDelete)','getDynaformAssign','DYN_UID='+uid+'&PRO_UID='+proUid,'POST');
|
||||
if(isokDependent){
|
||||
msgBox(G_STRINGS.ID_DYNAFORM_ASSIGN,"alert");
|
||||
|
||||
@@ -43,12 +43,21 @@
|
||||
|
||||
}
|
||||
function stepDelete( uid, stepPos ){
|
||||
PROCESSMAP_STEP_EDIT = true;
|
||||
new leimnud.module.app.confirm().make({label:'@#CONFIRM',action:function(){
|
||||
ajax_function('@G::encryptlink(@#URL_STEP_DELETE)','','STEP_UID='+uid+'&TASK=@#TASK&STEP_POSITION='+stepPos,'POST');
|
||||
@#PAGED_TABLE_ID.refresh();
|
||||
}.extend(this)
|
||||
});
|
||||
PROCESSMAP_STEP_EDIT = true;
|
||||
|
||||
if (leimnud.browser.isIE) {
|
||||
new leimnud.module.app.confirm().make({label:'@#CONFIRM',width:450, height:110, action:function(){
|
||||
ajax_function('@G::encryptlink(@#URL_STEP_DELETE)','','STEP_UID='+uid+'&TASK=@#TASK&STEP_POSITION='+stepPos,'POST');
|
||||
@#PAGED_TABLE_ID.refresh();
|
||||
}.extend(this)
|
||||
});
|
||||
}else{
|
||||
new leimnud.module.app.confirm().make({label:'@#CONFIRM',action:function(){
|
||||
ajax_function('@G::encryptlink(@#URL_STEP_DELETE)','','STEP_UID='+uid+'&TASK=@#TASK&STEP_POSITION='+stepPos,'POST');
|
||||
@#PAGED_TABLE_ID.refresh();
|
||||
}.extend(this)
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function externalStepEdit(stpUid, urlExternalStepEdit ){
|
||||
|
||||
Reference in New Issue
Block a user