Improved barcode input, needs CoffeeScript code!

This commit is contained in:
Markus Birth 2016-08-02 15:02:30 +02:00
parent 35a82edb06
commit 7765d2d512
2 changed files with 16 additions and 1 deletions

View File

@ -7,6 +7,9 @@
{{#fieldtype_tel}}
{{>mdl_input_tel}}
{{/fieldtype_tel}}
{{#fieldtype_barcode}}
{{>mdl_input_barcode}}
{{/fieldtype_barcode}}
{{#fieldtype_datetime}}
{{>mdl_input_datetime}}
{{/fieldtype_datetime}}

View File

@ -1,5 +1,17 @@
<div class="mdlext-selectfield mdlext-js-selectfield mdlext-selectfield--floating-label">
<select id="{{field_id}}_type" name="{{field_id}}_type" size="1" class="tokentypesel mdlext-selectfield__select">
<option value="https://">URL</option>
<option value="qrCode:">QR code</option>
<option value="aztecCode:">Aztec code</option>
<option value="barcode128:">ISO-15417 barcode</option>
<option value="barcodeEAN:">EAN barcode</option>
<option value="barcodeUPCA:">UPC-A barcode</option>
</select>
<label for="{{field_id}}_type" class="mdlext-selectfield__label">Type of {{title}}</label>
<span class="mdlext-selectfield__error">Please select a type!</span>
</div>
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" {{#required}}required{{/required}} id="{{field_id}}" name="{{field_id}}" value="{{value}}"/>
<label class="mdl-textfield__label" for="{{field_id}}">{{title}}</label>
<span class="mdl-textfield__error">Please input a URL or barcode!</span>
<span class="mdl-textfield__error">Please input a value!</span>
</div>