Dynamic Data

Overview

Dynamic data lets you create HTML form elements that export their data to your desktop or davinci page. The simple way to accomplish

Sample Form


Form Input
<input style="margin-top:5px;" data-name="value1" class="form-control"/>

					

Embedding Data

When creating a form element that exports its data to the desktop, you may wish to display the value of the data somewhere else in the HTML. This can easily be accomplised by setting the data-value property on an HTML element, and giving it the name of a data element as above. It will then display the data that the source element is exporting.

Form Input
<span style="margin-top:5px;" data-value="value1" class="form-control"></span>