Selectbox

To use the selectbox in a dizmo, include the compiled CSS and JS files after the DizmoElements includes.

<link rel="stylesheet" href="/styles/dizmoelements-2.0.css"></link>
<link rel="stylesheet" href="/styles/dizmoelements-selectbox-2.0.css"></link>
<script src="/scripts/dizmoelements-selectbox-2.0.js"></script>

Once included, you can use the <dizmo-select> and <dizmo-option> elements as you would use the <select> and <option> element in regular html.

<dizmo-select name="dizmos" id="dizmos">
    <dizmo-option value="pad">Pad</dizmo-option>
    <dizmo-option value="slides">Slides</dizmo-option>
</dizmo-select>