Use zend-decorator to format Zend_Form_Element_Radio in a table column with oher Zend_Form_Elements in rows
I want use decorators to format as table the following Zend_Form, placing a description in the first column and the Zend_Form_Element_Radio's options in second column and add 2 select in every row as you can see in the html example later. I need a concrete/working example. FORM class My_Form extends Zend_Form { const KIND_1 = 'dineer1'; const KIND_2 = 'dineer2'; const KIND_3 = 'dineer3'; const KIND_4 = 'dineer4'; const KIND_5 = 'dineer5'; const KIND_6 = 'dineer6'; public static $KINDS = array( 1 => self::KIND_1, 2 => self::KIND_2, 3 => self::KIND_3, 4 => self::KIND_4, 5 => self::KIND_5, 6 =>