Actions

QS

QS:Em validation sq

From LimeSurvey Manual

Revision as of 15:25, 26 August 2013 by Han (talk | contribs) (Created page with "De gereserveerde variabele ''this'' wordt automatisch vervangen door een referentie naar het actieve invoerveld.")


Subvraag validatie vergelijking (em_validation_sq)

 Tip: De functie is beschikbaar vanaf versie 1.92


Beschrijving

This is an equation that is used to validate each sub-question (text field) individually. Any text field that does not pass these validation conditions will have its background color turned pink (using the .em_sq_fn_validation CSS style) to highlight the error. Note that this is available in addition to the regular expression-based validation option.

Geldige waarden

De vergelijking gebruikt de syntax die beschreven is in de Expressie Beheer, zonder de omringende accolades.

Voorbeelden

Say you have a multiple short text question and you want to collect email addresses. You could use the regular expression validator to make sure the email address has proper syntax, but that doesn't guarantee that the domain name exists. You could add a function to Expression Manager called validateEmail() which uses DNS lookup service to validate the existence of the domain.

Nog een voorbeeld, je wilt alleen veelvouden van 3 toestaan, de vergelijking wordt dan:

(this / 3) == floor(this/3)

De gereserveerde variabele this wordt automatisch vervangen door een referentie naar het actieve invoerveld.