cml:instructions
Can only be a child tag of a form element tag. This tag allows you to include a set of instructions along with the form element, similar to the instructions
attribute. If both an instructions
attribute and a <cml:instructions>
tag are specified, only the value of the instructions
attribute will be used.
<cml:radios label="Sample radio buttons:">
<cml:instructions>Check one of these.</cml:instructions>
<cml:radio label="Radio 1" />
<cml:radio label="Radio 2" />
<cml:radio label="Radio 3" />
</cml:radios>