my actually design is like

        <dd>
          <label class="alignleft radiopad">
            <input name="Often" id="Once a day" class="radio" type="radio"
value="Once a day" />
            Once a day</label>
        </dd>
        <dd>
          <label class="alignleft radiopad">
            <input name="Often" class="radio" id="Once a Week" type="radio"
value="Once a Week" />
            Once a Week</label>
        </dd>
        <dd>
          <label class="alignleft radiopad">
            <input name="Often" class="radio" id="Once every 2 Week"
type="radio" value="Once every 2 Week" />
            Once every 2 Week</label>
        </dd>

but i set radio button in zend_form like

        $howoften = new Zend_Form_Element_Radio("howoften");
        $howoften
                        ->setRequired(true)
                        ->addMultiOptions(array("Once a day"=>"Once a 
day","Once a week"=>"Once a
week","Once every two week"=>"Once every two week"))                            
                
                        ->removeDecorator('Errors')     
                        ->removeDecorator('DdWrapper');

So my problem is that i want to display radio design like above using
zend_form_element_radio. please help .. :)

Thank you,

--
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/want-to-add-dd-in-lable-Zend-Form-radio-tp3475057p3475057.html
Sent from the Zend Framework mailing list archive at Nabble.com.

-- 
List: [email protected]
Info: http://framework.zend.com/archives
Unsubscribe: [email protected]


Reply via email to