我有四个单独的单选按钮,如下所示,我需要在模型中进行验证,我使用了一些 jquery 来只允许使用一个按钮,这有效但无法弄清楚如何在模型中进行验证如果没有选中任何按钮,任何帮助都会真正拯救我的脖子:
$options = array('A1' => 'A1' );
$attributes = array(
'legend'=>False ,
'label'=>true,
'class'=>'g' ,
//'before'=>'',
//'after'=>'',
'separator'=>'' );
echo $this->Form->radio('a1', $options, $attributes);
$options = array('A2' => 'A2' );
$attributes = array(
'legend'=>False,
'label'=>true,
'class'=>'g' ,
//'before'=>'',
//'after'=>'',
'separator'=>'' );
echo $this->Form->radio('a2', $options, $attributes);
$options = array('B1' => 'B1' );
$attributes = array(
'legend'=>False,
'label'=>true,
'class'=>'g' ,
//'before'=>'',
//'after'=>'',
'separator'=>'' );
echo $this->Form->radio('b1', $options, $attributes);
$options = array('B2' => 'B2' );
$attributes = array(
'legend'=>False,
'label'=>true,
'class'=>'g' ,
//'before'=>'',
//'after'=>'',
'separator'=>'' );
echo $this->Form->radio('b2', $options, $attributes);