I'want do renderowania:Zend_Form array notacji i puste elementy nazwy
<input type="text" value="" name="foo[]" />
<input type="text" value="" name="bar[]" />
ale Zend_Form_Element wymagają (string) imię, więc muszę zrobić:
$this->addElement('text', '1', array(
'belongsTo' => 'foo'
));
$this->addElement('text', '2', array(
'belongsTo' => 'bar'
));
ale wyjście jest:
<input id="foo-1" type="text" value="" name="foo[1]" />
<input id="bar-2" type="text" value="" name="bar[2]" />
mogę też przyjąć wyjście jak:
<input id="foo-1" type="text" value="" name="foo[1]" />
<input id="bar-1" type="text" value="" name="bar[1]" />
ale Zend_Form_Element przepisać elementów o tej samej nazwie
czy istnieje sposób, aby zrobić to, co trzeba?
Chcę tego samego! Daj mi znać, jeśli to rozwiążesz. –