1

我想要求集合中的所有复选框

我的代码如下所示:

     $this->widgetSchema['consent_confirmation'] = new sfWidgetFormSelectCheckbox(
        array(
          'choices' => Doctrine_Core::getTable('MyTable')->getOptions(),
        )
    ); 

更新:

我的验证如下所示:

$this->validatorSchema['consent_confirmation'] = new sfValidatorChoice(array(
    'choices' => array(Doctrine_Core::getTable('MyTable')->getOptions()),
    'multiple' => true,
    'required' => true
));  

如果它们没有全部被选中,我怎样才能让它返回“必需”,如果它们都被选中,它是有效的?

4

1 回答 1

1

此时我的 symfony 1.* 内存非常模糊,但我认为您需要在此处添加一条规则来validatorSchema处理此小部件的验证。

根据验证附录,您需要的验证器是sfValidatorChoice.

此小部件有许多选项,包括:

  • 分钟
  • 最大限度

假设您有上述两个选项,并且您想强制选择两者,我猜您可能需要将以下内容添加到表单的configure()方法中:

public function configure()
{
    $this->widgetSchema['consent_confirmation'] = new sfWidgetFormSelectCheckbox(array(
        'choices' => array(
            '1' => 'Yes I agree to #1',
            '2' => 'Yes I agree to #2',             
        )),
    );

    $this->validatorSchema['consent_confirmation'] = new sfValidatorChoice(array(
        'multiple' => true,
        'min'      => 2,
        'max'      => 2,
    ));
}

类似的东西 - 老实说,我不确定对 validatorSchema 的分配,可能有类似的东西addValidator()setValidator()方法。编辑:我认为添加了一些辅助方法,但其中一些可能是 1.4 特定的。上述任务应该以任何一种方式工作......

希望这可以帮助 :)

于 2013-11-10T12:43:46.517 回答