Lines 69-75
function submitBackgroundJob(f) {
Link Here
|
69 |
backgroundJobProgressTimer = setInterval("updateJobProgress()", 500); |
69 |
backgroundJobProgressTimer = setInterval("updateJobProgress()", 500); |
70 |
}, |
70 |
}, |
71 |
error: function(xml, textStatus) { |
71 |
error: function(xml, textStatus) { |
72 |
humanMsg.displayMsg( '<p>' + _('Import of record(s) failed: ') + textStatus + '</p></br>'+xml.responseText, { className: 'humanError' } ); |
72 |
alert("Operations failed: " + textStatus + "\n" + xml.responseText ); |
|
|
73 |
$("#jobpanel").hide(); |
74 |
$("#mainformsubmit").prop("disabled", false ); |
73 |
} |
75 |
} |
74 |
|
76 |
|
75 |
}); |
77 |
}); |
76 |
- |
|
|