24

Zend/Form を使用してページにフォームを追加しています。

次のように定義して要素を追加しています。

    $this->add(array(
            'name' => 'value',
            'attributes' => array(
                    'type'  => 'text',
                    'id' => 'value',
                    'autocomplete' => 'off',
                    'placeholder' => 'Cost',
            ),
            'options' => array(
                    'label' => 'Cost',
            ),
    ));

ご覧のとおり、'label' => 'cost' ノードがあり、これにより入力要素に対応するラベルが生成されました。

このラベルにクラス、属性を追加するにはどうすればよいですか?

4

4 に答える 4

49

これを試してください、私はこれをテストしたり使用したりしていませんが、ソースを見ると正しく機能するはずです:

$this->add(array(
    'name'       => 'value',
    'attributes' => array(),
    'options'    => array(
        'label_attributes' => array(
            'class'  => 'mycss classes'
        ),
        // more options
    ),        
));

これが機能しない場合は、コメントを残してください。機能しない場合は、かなりFormLabel制限されているため、このアプローチを使用することはできません。validAttributes

protected $validTagAttributes = array(
    'for'  => true,
    'form' => true,
);
于 2013-02-07T08:27:16.407 に答える
1

これは Zend Framework 2.3 でうまく機能します:

$this->add(array(
  'name' => 'userName',
  'attributes' => array(
      'type'  => 'text',
      'class' => 'form-control',
      'placeholder' =>'Username',
  ),
  'options' => array(
      'label' => 'Username',
      'label_attributes' => array('class' => 'control-label')
  ),

));
于 2014-10-03T12:45:45.213 に答える
0
$element->setOptions(array('label_class' => array('class' => 'control-label')));

次のようなコードを生成します。

<label class="control-label">
  <input type="radio" name="option1" id="option1" value="1">
  Option 1
</label>
<label class="control-label">
  <input type="radio" name="option2" id="option2" value="2">
  Option 2
</label>

私はこれを試しました。Zend Framework One で動作します。

使用する場合の注意

$element->setOptions(array('label_attributes' => array('class' => 'control-label')));

何らかの理由で望ましくない効果が得られます

<label attributes="control-label">
  <input type="radio" name="option1" id="option1" value="1">
  Option 1
</label>
于 2014-04-30T23:58:48.247 に答える