I'm working on a loan calculator using zope.formlib and following this
tutorial:
http://plone.org/documentation/manual/developer-manual/forms/using-zope.formlib
The Form interface has two date schemas like this:
class ISimuladorForm(Interface):
"""
Zope Interface for the financial simulator for sofomanec.
"""
start_date = Date(title=_(u'Start Date'),
description=_(u'Loan start date.'),
required=False)
first_payment = Date(title=_(u'First Payment'),
description=_(u'Date of the first payment.'),
required=True)
I use this interface to generate the form. The date schemas are rendered as
a single text block.
How do I get it to display a data picker widget instead of the boring square
text box?
_______________________________________________
Product-Developers mailing list
[email protected]
https://lists.plone.org/mailman/listinfo/product-developers