W klasie formularza mam taki kod:

$this->addElement('text', 'name', array(
            'placeholder' => 'name',
            'value' => $parParams['name'],
            'required' => true,
            'label' => 'account name',
            'filters' => array('StringTrim', 'StripTags'),

/*
'validators' => array(
    array('NotEmpty', true, array(
                                         'messages' => array(
                                                                    'isEmpty' => ''
                                                                   )
                                                )
             )
), */


            'decorators' => array(
                'ViewHelper',
                'Errors', 
                'Label'
            ),
            'attribs' => array(
                'class' => 'textbox',
            ),
        ));

Jak wysyłam przez formularz puste pole name to mam komunikat: Value is required and can't be empty.
Jak odkomentuje te linijki wyżej a w treści komunikatu nie wpisze nic to mam oczekiwany efekt. Ale nie chce tego robić w ten głupi sposób. Jest jakaś normalna opcja która nie pokazuje tych komunikatów z walidacji ?