Re: [fw-general] Setting list seperator in Zend_View_Helper_FormRadio

2011-05-11 Thread Marcus Stöhr
Hi Hector, thanks for the help. I should pay more attention to the methods an element provides. All the best, Marcus Am 10.05.2011 um 20:55 schrieb Hector Virgen: On Tue, May 10, 2011 at 11:27 AM, Marcus Stöhr daf...@soundtrack-board.dewrote: How can I pass a custom list seperator to the

[fw-general] Setting list seperator in Zend_View_Helper_FormRadio

2011-05-10 Thread Marcus Stöhr
Hi, I extend the Zend_Form class for my own forms. When using radiobuttons, I don't want them to be renderend with an br / at the end. How can I pass a custom list seperator to the view helper without extended the view helper and duplicate nearly all the code there? - Marcus -- List:

Re: [fw-general] Setting list seperator in Zend_View_Helper_FormRadio

2011-05-10 Thread Hector Virgen
On Tue, May 10, 2011 at 11:27 AM, Marcus Stöhr daf...@soundtrack-board.dewrote: How can I pass a custom list seperator to the view helper without extended the view helper and duplicate nearly all the code there? You can call setSeparator() on your form element: $element-setSeparator(''); Or