Bharanikumar
Bharanikumar

Reputation: 25733

@ZEND: How to make form label and element horizontally without decorators

How to create form elements and labels horizontally without decorators help.

// Add the comment element
        $this->addElement('text', 'txt_password', array(
            'label'      => 'Password:',
            'required'   => true,
            'validators' => array(
                array('validator' => 'StringLength', 'options' => array(0, 20))
                )

        ));

Upvotes: 1

Views: 446

Answers (1)

gregman
gregman

Reputation: 352

Tray its

$this->addElement('text', 'txt_password', array(

        'label'      => 'Password:',
        'required'   => true,
        'decorators' => array(
            'ViewHelper',
            'Description',
            'Errors',
            array(array('elementDiv' => 'HtmlTag'), array('tag' => 'span')),
            array('Label', array('tag' => 'span')),
         ),
        'validators' => array(
            array('validator' => 'StringLength', 'options' => array(0, 20))
            )

    ));

Upvotes: 3

Related Questions