Procházet zdrojové kódy

make textare and input type text can have maxlength attributes

master
Dominik Schmidt-Philipp před 1 dnem
rodič
revize
213969051c
1 změnil soubory, kde provedl 14 přidání a 2 odebrání
  1. +14
    -2
      app/views/form.htm

+ 14
- 2
app/views/form.htm Zobrazit soubor

@@ -10,7 +10,13 @@
size="{{ array_key_exists('length',@info) ? @info.length : 20 }}"
value="{{ array_key_exists('value',@info) ? @info.value : '' }}"
placeholder="{{ @info.description }}"
{{ (array_key_exists('required',@info) && @info.required ) ? 'required' : '' }} />
{{ (array_key_exists('required',@info) && @info.required ) ? 'required' : '' }}
<check if="{{ isset(@info.maxlength) }}">
<true>
maxlength="{{ @info.maxlength }}"
</true>
</check>
/>
<!--<label for="{{ @name }}">{{ @info.description }}</label>--><br>
</true>
</check>
@@ -32,7 +38,13 @@
id="{{ @name }}"
cols="{{ @info.cols }}"
rows="{{ @info.rows }}"
placeholder="{{ @info.description }}">{{ @info.value }}</textarea>
placeholder="{{ @info.description }}"
<check if="{{ isset(@info.maxlength) }}">
<true>
maxlength="{{ @info.maxlength }}"
</true>
</check>
>{{ @info.value }}</textarea>
<!--<label for="{{ @name }}">{{ @info.description }}</label>-->
<br>
</true>

Načítá se…
Zrušit
Uložit