Field(...,requires=IS_DATE(format='%m/%d/%Y'))

On Aug 9, 3:07 pm, Jim Steil <j...@qlf.com> wrote:
> I'm sure I just missed this somewhere, but I can't find how to control
> the date format for date fields in CRUD-created forms.
>
> db.py....
>
> driverUnit = db.define_table('driverUnit',
>      Field('driverUnitId', 'id'),
>      Field('driverId', db.driver, required=True, label='Driver'),
>      Field('unitId', db.unit, required=True, label='Unit'),
>      Field('start', 'date', required=True, label='Started On'))
>
> How it displays in my form...
>
> I'd like it to be mm/dd/yyyy format but don't know how to tell it to
> display that way.  What I'm finding on the web is just confusing me more.
>
>      -Jim

Reply via email to