2018.1

Table Of Contents
getInputValue($jcpreset, "jobcreation", "config");
getInputValue($printrange, "printRange",
"printRange");
if (config.jobcreation.config) {
$persistdres.prop({ "disabled": true,
"checked": true });
} else {
getInputValue($persistdres, "datamining",
"persistDataset", booleanValue);
$persistdres.prop("disabled", false);
}
$jcpreset.prop("disabled", false);
$printrange.prop("disabled", false);
} else {
$jcpreset.prop("disabled", true);
$printrange.prop("disabled", true);
$persistdres.prop({ "disabled": true, "checked":
true });
}
/* Red-flag any omissions in Workflow Selections */
if (!selections || missing.length) {
for (i = 0; i < missing.length; i += 1)
$("#" + missing[i]).prop("required", true);
return null;
}
return config;
}
$inputs
.on("change", function (event) {
var input = event.target;
var process = $("#" + input.id + "-inputs");
process.prop("disabled", !($(input).prop
("checked")));
})
.trigger("change");
$form
.on("change", function (event) {
AIOConfig = generateAIOConfig();
})
.on("submit", function (event) {
Page 300