Im creating a form which includes a large amount of radio boxes, Due to this, Im creating the form using raw HTML and heavily changing the layout.
For a question like the following;
Please select your role?
Student
[*]Teacher
[*]Contractior
[*]Other
Based on the this, I have something working like
%question_label_10001_q1%
%question_field_10001_q1%
However, Im wanting to split the individual question fields into their own keywords, for example (a non working example) So I can maniulate the layout further.
%question_label_10001_q1%
%question_field_10001_q1_0%
%question_field_10001_q1_1%
%question_field_10001_q1_2%
%question_field_10001_q1_3%
This doesnt work, Do you know how I can reference each individual question field?
Im creating a form which includes a large amount of radio boxes, Due to this, Im creating the form using raw HTML and heavily changing the layout.
… Im wanting to split the individual question fields into their own keywords, for example (a non working example) So I can maniulate the layout further.
%question_label_10001_q1%
%question_field_10001_q1_0%
%question_field_10001_q1_1%
%question_field_10001_q1_2%
%question_field_10001_q1_3%
This doesnt work, Do you know how I can reference each individual question field?[/quote]
The "question_field_*" keyword will only show the entire field contents. There is not an option-specific keyword for selection field types. Depending on what you require, alterations to the layout might be achieved through CSS.