Hi,
Im triing to preselect a Select Tag in Volt.
What I get so far:
{{ select('langId', langs, 'using': ['id', 'name'], 'useEmpty': false,'ng-model':"orderProp") }}
I will no emtpy option. But the generated Code looks like this:
<select id="langId" name="langId" ng-model="orderProp" class="ng-pristine ng-valid">
**<option value="? undefined:undefined ?"></option>**
<option value="1">English</option>
</select>
IN the Docs i found nothing at: https://docs.phalcon.io/en/1.2.6/reference/volt.html#using-tag-helpers or here: https://docs.phalcon.io/en/1.2.6/reference/tags.html#making-select-boxes
Can please anyone help me?
Thanks.