how to disable inArray validator forms in zend framework2

前端 未结 3 1570
庸人自扰
庸人自扰 2021-01-06 04:44

i use this in my Form:

$this->add(array(     
    \'type\' => \'Zend\\Form\\Element\\Select\',       
    \'name\' => \'county\',
    \'registerInAr         


        
3条回答
  •  囚心锁ツ
    2021-01-06 05:41

    Add the disable_inarray_validator to the options:

    $this->add(array(
        ...
        'options' => array(
            'disable_inarray_validator' => true,
            'label' => 'county',
        ),
    ));
    

提交回复
热议问题