Default question template
Question templates determine the appearance of questions and their responses on an interview page. The default question template shown below is used if no custom question template is defined in the interview script.
<mrSubTemplate>
<mrDataQuestionElement='Error'/>
<mrDataQuestionElement='Banner'/>
<mrDataQuestionElement='Label'/>
<div>
<br/>
</div>
<mrDataQuestionElement='Controls'/>
<div>
<br/>
</div>
</mrSubTemplate>
The MRData tags specify the position of the question and responses texts on the page. During interviews, HTML code is placed around the texts to determine how those texts appear on the page. For example, for categorical responses, code is inserted to display a radio button or check box for each response, whereas for text responses an input box is displayed instead.
The general code for any question is as follows:
<span class="mrQuestionText" style="">QuestionText</span>
<div><br/></div>
<div></div>
<span class="mrQuestionText" style="">QuestionText</span>
<div style="margin-left: 2em"> <div></div>
<span style="display: inline-block;">
<table summary="" class="mrQuestionTable" style="">
Response controls
</table>
</span>
</div>
where:
▪QuestionText is the question text.
▪Response controls are one or more row specifications that lay out the response controls according to the response type.
Response controls
See also