template: field_combobox

a text input plus a select wich updates text input value on change.
html5 version commented out for poor browsers support.
This commit is contained in:
Fabio Comuni 2012-03-28 10:43:52 +02:00
parent 7fc57f486f
commit 82106632f0
1 changed files with 18 additions and 0 deletions

18
view/field_combobox.tpl Normal file
View File

@ -0,0 +1,18 @@
<div class='field combobox'>
<label for='id_$field.0'>$field.1</label>
{# html5 don't work on Chrome, Safari and IE9
<input id="id_$field.0" type="text" list="data_$field.0" >
<datalist id="data_$field.0" >
{{ for $field.4 as $opt=>$val }}<option value="$val">{{ endfor }}
</datalist> #}
<input id="id_$field.0" type="text" value="$field.2">
<select id="select_$field.0" onChange="$('#id_$field.0').val($(this).val())">
<option value="">$field.5</option>
{{ for $field.4 as $opt=>$val }}<option value="$val">$val</option>{{ endfor }}
</select>
<span class='field_help'>$field.3</span>
</div>