如何在一个 Zend_Form 中连续放置 2 个按钮

Posted

技术标签:

【中文标题】如何在一个 Zend_Form 中连续放置 2 个按钮【英文标题】:How to put 2 buttons in a row in one Zend_Form 【发布时间】:2010-10-16 14:49:34 【问题描述】:

我认为在您的 Web 应用程序中拥有具有 编辑删除 按钮。但是采埃孚将一个按钮放在另一个按钮下,这是违反直觉的。 我猜 ViewScript 装饰器可以帮助我完全覆盖按钮 html

但是如何跨其他形式做到这一点,以避免重复? 可能是我过于复杂了,我应该以某种方式粘贴 html 代码而不是按钮元素对象?

【问题讨论】:

【参考方案1】:

这是我在自己的 Form 类中使用的代码,我的所有表单都继承自该类。主要技巧是仅在按钮本身上使用 ViewHelper 装饰器,并将按钮粘贴在使用 DtDdWrapper 的显示组中,并将按钮包装在 <div class='buttons'> 中以获得额外的样式选项

  protected $_buttons = array();

  /**
   * Sets a list of buttons - Buttons will be standard submits, or in the getJson() version
   * they are removed from display - but stuck in the json in the .buttons property
   *
   * $buttons = array('save'=>'Save This Thing', 'cancel'=>'Cancel') as an example
   *
   * @param array $buttons 
   * @return void
   * @author Corey Frang
   */
  public function setButtons($buttons)
  
    $this->_buttons = $buttons;
    foreach ($buttons as $name => $label)
    
      $this->addElement('submit', $name, array(
          'label'=>$label,
          'class'=>$name,
          'decorators'=>array('ViewHelper'),
        ));
    
    $this->addDisplayGroup(array_keys($this->_buttons),'buttons', array(
      'decorators'=>array(
        'FormElements',
        array('HtmlTag', array('tag'=>'div', 'class'=>'buttons')),
        'DtDdWrapper'
      )
    ));
  

  // Example from form::init()
  $this->setButtons(array('save'=>'Save Entry', 'delete'=>'Delete Entry'));

【讨论】:

【参考方案2】:

在 Zend 开发者专区阅读本教程:

Decorators-with-Zend_Form.

【讨论】:

【参考方案3】:

可以在 Form 的构造函数中修改按钮装饰器。 按钮应保留没有 HtmlTag 装饰器,以禁用由于 dt/dd 标记而出现在单独的行上,HtmlTag 装饰器可以像这样删除:

$buttonobject->setDecorators(array(
    'ViewHelper',
    //array('HtmlTag', array('tag' => 'dd')),
    //array('Label', array('tag' => 'dt')),         
));

评论仅用于演示目的。 此外,出于样式目的,按钮可以分组到一个字段集中:

$this->addDisplayGroup(array('delete','submit'),'buttons');

可选的site.css代码:

#fieldset-buttons  border: none; 

【讨论】:

以上是关于如何在一个 Zend_Form 中连续放置 2 个按钮的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Zend_Dojo 表单元素动态添加到 zend_form?

如何使用装饰器将多个 div 或字段集添加到 zend_form?

PHP 在Zend_Form中显示错误

递推,求至少连续放置三个U的危险组合

如何水平放置表格(连续)?

对 Zend_Form 中的特定子表单使用自定义 isValid() 函数