Skip to content

startDate and endDate Options #107

@lowjumpingfrog

Description

@lowjumpingfrog

The documentation is not very clear about what format these should be in so, for those looking for the answer....
for start and end dates for current day the option might look like this:

dateTimeOptions = {
			'format': 'dd/mm/yyyy HH:ii',
			'autoclose': True,
			'showMeridian' : True,
			'endDate':  str(datetime.datetime.today().date())
		}

or

dateTimeOptions = {
			'format': 'dd/mm/yyyy HH:ii',
			'autoclose': True,
			'showMeridian' : True,
			'startDate':  str(datetime.datetime.today().date())
		}

You need to import datetime into your forms.py for the examples above to work. The javascript in the datetimewidget is expecting a string. The Javascript Date object is pretty happy with a variety of strings. See docs for ones you might ask Django to create or just add your own.
Ciao

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions