2021.1

Table Of Contents
.on("change", function (event) {
c.setCustomInputValidity(event.target,
c.validateNumericRange,
"Invalid Print Range value entered");
})
.trigger("change");
$cancelButton.on("click", function () {
if (operationId !== null) {
/* Cancel an Operation */
$.ajax({
type: "POST",
url:
"/rest/serverengine/workflow/print/cancel/" + operationId
})
.done(function (response) {
c.displayInfo("Operation Cancelled!");
operationId = null;
setTimeout(function () {
$progressBar.attr("value", 0);
$submitButton.prop("disabled", false);
$cancelButton.prop("disabled", true);
}, 100);
})
.fail(c.displayDefaultFailure);
}
});
$("form").on("submit", function (event) {
event.preventDefault();
if (!c.checkSessionValid()) return;
var file = $("#datafile")[0].files[0],
dmConfigId = $("#datamapper").val(),
templateId = $("#template").val(),
jcConfigId = $("#jcpreset").val() || "0",
ocConfigId = $("#ocpreset").val(),
async = $("#async").prop("checked"),
createOnly = $("#createonly").prop("checked"),
Page 423