2021.1

Table Of Contents
*/
booleanValue = function ($input) {
return $input.prop("checked");
};
/* Get Input Value and add it to the Configuration
(Helper Function) */
function getInputValue($input, process, field, parser)
{
var value = $input.val().trim();
if (value) {
if (parser)
value = parser($input);
if (config[process] === undefined)
config[process] = {};
config[process][field] = value;
}
}
/* Get Table Input Value and add it to the
Configuration (Helper Function) */
function getTableInputValue($table, process, field,
parser) {
if ($table.find("tr:has(td)").not
(".placeholder").length) {
if (config[process] === undefined)
config[process] = {};
config[process][field] = parser($table);
}
}
/* Get Required & Actual Workflow Selections */
$inputs.each(function () {
if ($(this).prop("checked"))
config[this.id] = {};
$(this).prop("required", false);
required.push(this.id);
});
var selections = (Object.keys(config)).length;
/* Verify the Workflow Selections and note any
omissions */
var matches = 0,
Page 409