Actions

QS

Date max/nl: Difference between revisions

From LimeSurvey Manual

(Updating to match new version of source page)
(Updating to match new version of source page)
Line 6: Line 6:
'''Beschrijving'''
'''Beschrijving'''


Dit vraagattribuut kan gebruikt worden om een maximale waarde te bepalen voor een vraag met een kalender. Het geldt zowel voor de popup-variant als voor de dropdownlijsten. Voor de dropdownlijsten wordt alleen het jaar gebruikt.
This question attribute can be used to set the minimum value for the date question (in Y-m-d format or any English valid string) . It applies to both, the popup-variant of the calendar and the dropdown fields.
Besides validation via Expression Manager, the selection of days in the popup calender is also limited accordingly. The year in popup calendar is not updated if Expression use Question in same page.


'''Geldige waarden'''
'''Geldige waarden'''


#'''Elke datum in het formaat YYYY-MM-DD''' (bijv., 2013-08-24)
* Any date value in format YYYY-MM-DD (eg., 2013-08-24)
#'''Elke waarde voor jaar'''
* Any year value
#'''Referentie aan een andere datum/tijd vraag''' (bijv., geboortedatum)
* Any English string : "now", "-10 years", "tomorrow"
#'''Expressies''', werkt pas op de volgende pagina. Voorbeeld: je kunt een datum van een vorige vraag gebruiken + 365 dagen als het maximum voor de huidige vraag, door: date("Y-m-d",strtotime(vertrekdatum)+365*60*60*24). De vraag met de code 'vertrekdatum' moet dan op een eerdere pagina in de enquête staan.
* Reference to another date/time question : AnotherDateQuestion
* Expressions : With expressions, a minimum date can be dynamically calculated. For example, you can use a date from a previous answer + 3 days as a minimum for the present question by entering: date("Y-m-d",strtotime(departuredate)+3*60*60*24).


</onlyinclude>
</onlyinclude>

Revision as of 15:16, 30 January 2017


Maximum datum (date_max) (Nieuw in 2.05)

Beschrijving

This question attribute can be used to set the minimum value for the date question (in Y-m-d format or any English valid string) . It applies to both, the popup-variant of the calendar and the dropdown fields. Besides validation via Expression Manager, the selection of days in the popup calender is also limited accordingly. The year in popup calendar is not updated if Expression use Question in same page.

Geldige waarden

  • Any date value in format YYYY-MM-DD (eg., 2013-08-24)
  • Any year value
  • Any English string : "now", "-10 years", "tomorrow"
  • Reference to another date/time question : AnotherDateQuestion
  • Expressions : With expressions, a minimum date can be dynamically calculated. For example, you can use a date from a previous answer + 3 days as a minimum for the present question by entering: date("Y-m-d",strtotime(departuredate)+3*60*60*24).