我想要求集合
中的所有复选框我的代码如下所示:
$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
));
如果没有全部选中,我怎样才能让它返回'必需',并且如果它们全部被选中则有效?
答案 0 :(得分:1)
我的symfony 1. *内存在这一点上非常模糊,但我认为你需要做的是在validatorSchema
添加一个规则来处理这个小部件的验证。
根据Validation Appendix验证码,您需要的是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特定的。上述任务应该以任何方式工作......
希望这会有所帮助:)