0

私は考えられるすべての組み合わせを試しましたが、この形式は次のとおりです。

class Form_Login Extends Zend_Form{

    public function init(){
        $this->setMethod('post');


        $email = new Zend_Form_Element_Text('email');
        $emailValidator = new Zend_Validate_EmailAddress();
        $emailValidator->setMessage('Please use a valid email address');
        $email->addValidator($emailValidator)
                ->setRequired(TRUE)
                ->setLabel("Email Address")
                ->setAttrib('size', '35');

        $password = new Zend_Form_Element_Password('password');
        $password->setLabel('Password')
                ->setAttrib('size', '35')
                ->setRequired(true);

        $submit = new Zend_Form_Element_Submit('login');
        $submit->setLabel('Login');


        $this->addElements(array(
            $email,
            $password
            )
        );



        $this->addDisplayGroup(array(
                    'email',
                    'password'

        ),'loginGroup',array('legend' => 'Login'));


        $loginGroup = $this->getDisplayGroup('loginGroup');


        $this->setElementDecorators(array(
            'ViewHelper',
            array('Label', array('separator' => '', 'requiredPrefix' => '* ')),
            array('Errors'),
            array('HtmlTag', array('tag' => 'p', 'class' => 'form-element')),
        ));


        $loginGroup->setDecorators(
            array(
                'FormElements',
                 array('HtmlTag',array('tag'=>'div','openOnly'=>true)),
                 'Fieldset'
                )
        );


        $this->addElements(array($submit));

        //buttons do not need labels
        $submit->setDecorators(array(
            array('ViewHelper'),
            array('HtmlTag', array('tag' => 'p', 'class' => 'submit-button'))
        ));

    }
}

下の画像のようにグーグルクロームでうまく表示されます:

<fieldset id="fieldset-loginGroup"><legend>Login</legend>
<div>
<p class="form-element"><label for="email" class="required">* Email Address</label>
<input type="text" name="email" id="email" value="" size="35"></p>
<p class="form-element"><label for="password" class="required">* Password</label>
<input type="password" name="password" id="password" value="" size="35"></p>
<p class="submit-button">
<input type="submit" name="login" id="login" value="Login"></p></div>
</fieldset>

そして、Firefoxでは、フィールドセットタグから外れるため、次のようになります。

<dl class="zend_form">
<fieldset id="fieldset-loginGroup"><legend>Login</legend>
<div>
<p class="form-element"><label for="email" class="required">* Email Address</label>
<input name="email" id="email" value="" size="35" type="text"></p>
<p class="form-element"><label for="password" class="required">* Password</label>
<input name="password" id="password" value="" size="35" type="password"></p></div>
</fieldset>
<p class="submit-button">
<input name="login" id="login" value="Login" type="submit"></p></dl>

タグはサーバー側で生成されるため、ブラウザーは大きな違いを生むべきではないことを私は知っています。ただし、送信ボタンをFirefoxで設定されたフィールド内に収めることができません。私はこれら2つ以外のブラウザを試したことがないので、どのように表示されるかわかりません。何か助けは...?

4

1 に答える 1

0

私が試したこれを回避する:

class Form_Login Extends Zend_Form{

public function init(){
    $this->setMethod('post');

    $email = new Zend_Form_Element_Text('email');
    $emailValidator = new Zend_Validate_EmailAddress();
    $emailValidator->setMessage('Please use a valid email address');
    $email->addValidator($emailValidator)
            ->setRequired(TRUE)
            ->setLabel("Email Address")
            ->setAttrib('size', '35');

    $password = new Zend_Form_Element_Password('password');
    $password->setLabel('Password')
            ->setAttrib('size', '35')
            ->setRequired(true);

    $submit = new Zend_Form_Element_Submit('login');
    $submit->setLabel('Login');


    $this->addElements(array(
        $email,
        $password,
        $submit
        )
    );


    $this->setLegend('Login');
    $this->setElementDecorators(array(
        'ViewHelper',
        array('Label', array('separator' => '', 'requiredPrefix' => '* ')),
        array('Errors'),
        array('HtmlTag', array('tag' => 'p', 'class' => 'form-element')),
    ));

    $this->setDecorators(array(
        'FormElements',
        'Fieldset', 
        'Form'
        ));

    //buttons do not need labels
    $submit->setDecorators(array(
        array('ViewHelper'),
        array('HtmlTag', array('tag' => 'p', 'class' => 'submit-button'))
    ));

}

}

そして今、それはうまく表示されます。違いは次のとおりです。

$this->setDecorators(array(
        'FormElements',
        'Fieldset', 
        'Form'
        ));

また、凡例を次のように設定します。

$this->setLegend('Login');
于 2010-09-26T22:08:38.087 に答える