PDA

View Full Version : Standard radio button attribute


Runner
04-Oct-2007, 01:01 PM
I have a component with two attributes. Each attribute has two choices.

Using the standard layout with attributes set in 1 column, the two choices appear side by side without any spacing between the attributes' labels.

I have changed the layout as below by putting it in a table. I have achieved the appearance I want but is this the correct way to do it?


<table cellspacing="10" align="left" valign="top">
<tr>
<td>
<Actinic:Variable Name="AttributeDisplayLabel"/>
</td>
</tr>
<tr>
<td>
<actinic:variable name="ChoiceList" value="Radio Button Choice List" />
</td>
</tr>
</table>
<actinic:variable name="AttributeSeparator" />


PS I cannot find out what the variable "AttributeSeparator" does. it is not detailed in the variable guide?

Bruce
08-Oct-2007, 02:09 PM
You could do it this way if you want to or you could use the 'List Layout settings' option to layout your attributes the way you would want them to appear. As for 'AttributeSeparator' it does what it says, it inserts a custom seperator between the attributes.

Kind regards,