Test QuickBase API_GenResultsTable Array Templating
by dandiebolt
HTML
<script src="https://www.quickbase.com/db/befe2yy7d?a=dbpage&pagename=jquery.tmpl.min.js"></script>
<script id="template" type="text/x-jquery-tmpl">
<ul>
<li>Name: ${$data[0]}</li>
<li>Phone: ${$data[1]}</li>
<li>Email: ${$data[2]}</li>
</ul>
<hr/>
</script>
<div id="here"></div>
JavaScript
records=[
["acqueline Melton","(481) 671-1393","[email protected]"],
["Adam Fuller","(622) 717-4483","[email protected]"],
["Adena Reilly","(524) 176-8562","[email protected]"],
["Adria Stanley","(737) 896-7603","[email protected]"]
];
$("#template").tmpl(records).appendTo("#here");