2

如何在一个 div 中显示多个显示组?

我只需要显示一个视觉分离 - 但在同一个 div 内。

有没有办法在一个 div 中显示多个显示组?

例如:以 zend 形式实现以下功能:

  <div style="width: 100%;">     

       <div style="width: 50%; float: left; padding-left: 20px; padding-bottom: 25px;">
       <fieldset id="fieldset-homeAddressSettings" tag="fieldset" style="">
         <legend> Home address </legend>
        <!-- multiple elements follow -->
        </fieldset>
       </div>
      <div style="width: 50%; float: left; padding-left: 20px; padding-bottom: 25px;">
     <fieldset id="fieldset-officeAddressSettings" tag="fieldset" style="">
         <legend> Office address </legend>
        <!-- multiple elements follow -->
     </fieldset>  
       </div>
  </div>

我怎样才能在 Zend 形式中实现这一点?

我已经搜索和搜索,到目前为止我还没有找到任何有用的东西。

4

2 回答 2

8

'HtmlTag' 装饰器的 'openOnly' 和 'closeOnly' 布尔选项完全符合您的需要。如您所知, openOnly 的含义是它只生成一个没有结束标签的开始标签(即 ),反之亦然 closeOnly 属性(即

Zend_Form PHP 代码:

$form = new Zend_Form();

// Form stuff here

$form->addDisplayGroup(
    array(
        'homeAddressLine1',
        'homeAddressLine2',
        'homeCity',
        // etc
    ),
    'homeAddress',
    array(
        'legend' => 'Home Address'
        'disableDefaultDecorators' => true,
        'decorators' => array(
            'FormElements',
            'FieldSet',
            array('HtmlTag', array('tag' => 'div', 'class' => 'addresses', 'openOnly' => true))
        )
    )
);

$form->addDisplayGroup(
    array(
        'workAddressLine1',
        'workAddressLine2',
        'workCity',
        // etc
    ),
    'workAddress',
    array(
        'legend' => 'Work Address'
        'disableDefaultDecorators' => true,
        'decorators' => array(
            'FormElements',
            'FieldSet',
            array('HtmlTag', array('tag' => 'div', 'closeOnly' => true))
        )
    )
);

生成的 HTML:

<form <!-- Your Zend_Form attributes here -->>
    <div class="addresses">
        <fieldset id="fieldset-homeAddress">
            <legend>Home Address</legend>
            <!-- Your Home Address elements/decorators here -->
        </fieldset>
        <fieldset id="fieldset-workAddress">
            <legend>Work Address</legend>
            <!-- Your Work Address elements/decorators here -->
        </fieldset>
    </div>
</form>
于 2010-03-26T15:52:09.013 回答
1

我用 JavaScript 解决了这个问题——它让我相信,虽然 zend 形式对某些东西有好处,但它并不总是最好的选择。有时它只是比它的价值更痛苦。

于 2010-02-05T16:43:26.683 回答