1.8

Table Of Contents
/* Restrict Rule Type Selectors to Entity Specific
Options */
var types = ["search", "sorting", "grouping"],
i;
for (i = 0; i < types.length; i += 1)
setRuleTypeSelector(types[i], options);
})
.trigger("change");
/* Add the Value & Property "Condition" Change Handler */
var conditionPlaceholder = function (event) {
var $rule = $(event.target).closest(".rule"),
condition = $(event.target).val(),
label = "Value:",
placeholder = "Value";
if (condition === "IN" || condition === "NOT IN") {
label = "Value(s):";
placeholder = "Value1, Value2, Value3, ...";
}
$rule
.find("label[for='value']")
.html(label);
$rule
.find("#value")
.attr("placeholder", placeholder);
};
/* "Select Finishing Type" Change Handler */
var selectFinishingType = function (event) {
var $rule = $(event.target).closest(".rule"),
type = $(event.target).val(),
options;
if (type === "medianame")
options = ["condition", "medianame"];
else if (type === "duplex")
options = ["duplex"];
else if (type === "coating")
options = ["condition", "frontcoating",
"backcoating"];
else if (type === "binding")
options = ["condition", "bindingstyle",
"bindingtype",
Page 163