Add "plain" date widget
to avoid deform.addCallback() JS for mobile forms surely there's a better solution, but this works for now...
This commit is contained in:
parent
4b3e1c7b1b
commit
0f5d668f86
3 changed files with 23 additions and 1 deletions
16
tailbone/templates/deform/date_plain.pt
Normal file
16
tailbone/templates/deform/date_plain.pt
Normal file
|
@ -0,0 +1,16 @@
|
|||
<div tal:define="css_class css_class|field.widget.css_class;
|
||||
oid oid|field.oid;
|
||||
style style|field.widget.style;
|
||||
type_name type_name|field.widget.type_name;"
|
||||
tal:omit-tag="">
|
||||
${field.start_mapping()}
|
||||
<input type="${type_name}"
|
||||
name="date"
|
||||
value="${cstruct}"
|
||||
|
||||
tal:attributes="class string: ${css_class or ''} form-control hasDatepicker;
|
||||
style style;
|
||||
attributes|field.widget.attributes|{};"
|
||||
id="${oid}"/>
|
||||
${field.end_mapping()}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue