2019.2

Table Of Contents
.find("#name")
.val(),
"order": $body
.find("#order")
.val(),
"type": element.id
},
$numeric = $body.find("#numeric");
if ($numeric.length)
rule.numeric = $numeric.prop
("checked");
if (!search[type]) search[type] = [];
search[type].push(rule);
});
});
$.ajax({
type: "PUT",
url:
"/rest/serverengine/entity/find",
data: JSON.stringify(search),
contentType: "application/json; charset=utf-
8"
})
.done(function (response) {
c.displayStatus("Request Successful");
c.displayHeading("Input Parameters");
c.displaySubResult("JSON Search
Parameters", c.jsonPrettyPrint(search));
c.displayHeading("Search Results");
c.displaySubResult("Plain",
c.jsonIDListsWithSortKeyToTable(response));
c.displaySubResult("JSON Identifier Lists
(with Sort Key)", c.jsonPrettyPrint(response));
})
.fail(c.displayDefaultFailure);
})
/* Reset Form Rules Handler */
.on("click", "#reset", function (event) {
if (confirm("Are you sure you wish to continue ?"))
$("div.sub-rules")
Page 169