HI,

I can't resolve a strange problem. This is my code:

echo $form->input('User.SecurityAccess.'.$aco_id,
                  array
                  (
                    'div' => false,
                    'label' => false,
                    'type' => 'radio',
                    'legend' => false,
                    'default' => $selected,
                    'options' => array('allow' => " {$allow}",
'deny' => " {$deny}")
                  )
            );

I try to create a set of radio groups, every group has 2 raàdio
buttons. I want taht every radio group has different id in their
label, so the user can click directly on the label, BUT CAKE SEEMS TO
PUT the same id in the code. This is the resulting code:

<input type="radio" name="data[Group][SecurityAccess][4]"
id="GroupSecurityAccessAllow" value="allow"  />
<label for="GroupSecurityAccessAllow">&nbsp;Allow</label>

<input type="radio" name="data[Group][SecurityAccess][4]"
id="GroupSecurityAccessDeny" value="deny" checked="checked"  />
<label for="GroupSecurityAccessDeny">&nbsp;<span style = 'color:
red'>Deny</span></label>

The other pairs of radio buttons has the SAME LABEL ID.

ANY IDEAS?

Tnx!!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to