Any body have idea on showing <label> for each radio option with
existing CakePHP methods?

What I want is:
==============================================================
  <input name="data[Request][priority_id]" id="priority_id_1" value="1"
type="radio" />
        <label for="priority_id_1">Normal</label><br/>
  <input name="data[Request][priority_id]" id="priority_id_2" value="2"
type="radio" />
        <label for="priority_id_2">Urgent</label><br/>
  <input name="data[Request][priority_id]" id="priority_id_3" value="3"
type="radio" />
        <label for="priority_id_3">Low</label>
==============================================================
Apparently, I can not show <label></label> by $html->radio();

Do I miss any existing (and hidden) HtmlHelper Method? Or I have to
create my own Helper?

Hint from anybody is appreciated! ^O^


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to