Explorar el Código

respect required keyword in checkboxes

master
Dom SP hace 2 años
padre
commit
171263c26b
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      app/views/form.htm

+ 2
- 1
app/views/form.htm Ver fichero

@@ -46,7 +46,8 @@
id="{{ sprintf('%s[%s]',@name,@key) }}"
name="{{ sprintf('%s[%s]',@name,@key) }}"
value="true"
{{ is_array(@info.checked) ? (in_array(@key,@info.checked) ? 'checked' : '') : (!strcmp(@key,@info.checked) ? 'checked' : '') }} />
{{ is_array(@info.checked) ? (in_array(@key,@info.checked) ? 'checked' : '') : (!strcmp(@key,@info.checked) ? 'checked' : '') }}
{{ is_array(@info.required) ? (in_array(@key,@info.required) ? 'required' : '') : (!strcmp(@key,@info.required) ? 'required' : '') }} />
<label for="{{ sprintf('%s[%s]',@name,@key) }}">
{{ @val }}</label><br>
</repeat>

Cargando…
Cancelar
Guardar