Actions

BeforeQuestionRender: Difference between revisions

From LimeSurvey Manual

(beforeRenderQuestion)
 
m (add in teplate [...})
Line 17: Line 17:
'''Possible output'''
'''Possible output'''


* ''text'' new text for the question
* ''text'' new text for the question : in template {QUESTION_TEXT}
* ''class'' new question css class for the question
* ''class'' new question css class for the question : in template {QUESTION_CLASS}
* ''help'' new help text for the question
* ''help'' new help text for the question : in template {QUESTIONHELP}
* ''mandatory'' if question is mandatory (boolean, not null).
* ''mandatory'' if question is mandatory (boolean, not null).

Revision as of 19:39, 22 September 2014

When

This event happen when question part from template is displayed.

Input

The event receives the following information:

  • surveyId the id of the current survey
  • qid the id of the current question
  • text' the question text
  • class' the question css class
  • help the question help text
  • type the code of the question type
  • code' the question code

Possible output

  • text new text for the question : in template {QUESTION_TEXT}
  • class new question css class for the question : in template {QUESTION_CLASS}
  • help new help text for the question : in template {QUESTIONHELP}
  • mandatory if question is mandatory (boolean, not null).