Zend Framework 2 - Form Element Decorators

后端 未结 4 697
情话喂你
情话喂你 2020-12-13 22:32

I want to force the Zend form into Twitter Bootstrap style. I currently iterate through the form fields and write the form info into my bootstrap div construction.

I

4条回答
  •  误落风尘
    2020-12-13 22:59

    This will make the code easier.

    http://php.net/manual/en/function.echo.php

    prepare();
    echo 
    $this->form()->openTag($form),
    $this->formCollection($form),
    $this->form()->closeTag($form);
    

提交回复
热议问题