2021.1

Table Of Contents
<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
aio-process-json.js
/* All-In-One Service - Process All-In-One (JSON) Example */
(function ($, c) {
"use strict";
$(function () {
c.setupExample();
var $form = $("form"),
$inputs = $("#inputs input"),
$datafile = $("#datafile"),
$datamapper = $("#datamapper"),
$datarecords = $("#datarecords"),
$template = $("#template"),
Page 406