2021.1

Table Of Contents
if ($option.hasClass(clazz))
matched.push(clazz);
});
if (matched.length)
selected = ($.inArray($entity.attr
("id") + "-" +
$entity.val(), matched) >= 0);
$selectors.each(function (selectorIndex,
selector) {
var allClass = selector.id + "-";
if (!$option.hasClass(allClass) &&
!$option.hasClass(allClass +
$(selector).val())) {
selected = false;
}
});
$option
.prop("hidden", !selected)
.find("input, select")
.prop("disabled", !selected);
if (before && selected)
unhidden.push($option
.children("select.options-
selector"));
});
unhidden.forEach(function (selector) {
$(selector).trigger("change");
});
})
/* Submit Form Rules Handler */
.on("submit", function (event) {
event.preventDefault();
if (!c.checkSessionValid()) return;
/* Process & Add Search Rules */
var search = {
"entity": $("#entity").val(),
Page 209