1.7

Table Of Contents
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")
.find("div.rule")
.remove();
}
});
});
}(jQuery, Common));
Page 134