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:
Lance Edgar 2019-02-22 20:46:54 -06:00
parent 4b3e1c7b1b
commit 0f5d668f86
3 changed files with 23 additions and 1 deletions

View 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>