2019.1

Table Of Contents
</fieldset>
<fieldset>
<legend>Actions</legend>
<div>
<input id="submit" type="submit"
value="Submit">
</div>
</fieldset>
</form>
</body>
</html>
JavaScript/jQuery
jse-get-jobs.js
/* Job Set Entity Service - Get Jobs for Job Set Example */
(function ($, c) {
"use strict";
$(function () {
c.setupExample();
$("form").on("submit", function (event) {
event.preventDefault();
if (!c.checkSessionValid()) return;
var jobSetId = $("#jobset").val();
$.ajax({
type: "GET",
url: "/rest/serverengine/entity/jobsets/" +
jobSetId
})
.done(function (response) {
c.displayStatus("Request Successful");
c.displayHeading("Job IDs for Job Set '" +
jobSetId + "'");
c.displaySubResult("Plain", c.jsonIDListToPlain
(response));
c.displaySubResult("JSON Identifier List",
c.jsonPrettyPrint(response));
Page 199