2009年7月9日星期四

Re: [fw-mvc] Zend_Form_Element_Submit class attribute

On Friday 10 July 2009 00:01:39 Kostyantyn Shakhov wrote:
> $this->addElement(
> 'Submit',
> 'btn_search',
> array(
> 'label' => 'Search',
> 'decorators' => $this->buttonDecorators,
> 'class' => 'class_name'
> )
> );

Try...
$this->addElement(
'Submit',
'btn_search',
array(
'label' => 'Search',
'decorators' => $this->buttonDecorators,
'attributes' => array(
'class' => 'class_name'
)
)
);

没有评论: