2021.1

Table Of Contents
<table>
<tr class="root">
<td>
<input class="use-option" type="checkbox">
</td>
<td class="name">
<input type="text" placeholder="Name" required>
</td>
<td class="type">
<select id="type" class="options-selector">
<option value="string">String</option>
<option value="number">Number</option>
<option value="boolean">Boolean</option>
<option value="date">Date</option>
</select>
</td>
<td class="option type-string value">
<input type="text" placeholder="Value" required>
</td>
<td class="option type-number value">
<input type="number" step="0.001"
placeholder="Value" required />
</td>
<td class="option type-boolean value">
<input type="checkbox" />
</td>
<td class="option type-date value">
<input id="value1" type="date" required />
</td>
</tr>
</table>
</div>
JavaScript/jQuery
jc-process-by-cse-params-json.js
/* Job Creation Service - Process Job Creation (By Content Set)
(Runtime Parameters) (JSON) Example */
(function ($, c) {
"use strict";
$(function () {
Page 371