2021.1

Table Of Contents
</fieldset>
<fieldset>
<legend>Actions</legend>
<div>
<input id="submit" type="submit"
value="Submit">
</div>
</fieldset>
</form>
</body>
</html>
JavaScript/jQuery
cc-preview-image-by-dre-json.js
/* Content Creation Service - Create Preview Image (By Data Record)
(JSON) Example */
(function ($, c) {
"use strict";
$(function () {
c.setupExample();
var $quality = $("#quality"),
$archive = $("#archive"),
$bleed = $("#bleed"),
$pages = $("#pages"),
$viewPortWidth = $("#viewPortWidth");
$("#type")
.on("change", function (event) {
$quality.prop("disabled", ($(event.target).val()
=== "png"));
})
.trigger("change");
$pages
.on("change", function (event) {
c.setCustomInputValidity(event.target,
function (value) {
return c.validateNumericRange(value, false,
Page 301