在我的Yii应用程序中,我有一个单选按钮。当按下单选按钮的左键时,field_B的值不应大于3999。这是我在model.php中的代码(但不起作用):
socket.send(b"Server message to client3")
答案 0 :(得分:1)
尝试以下
[['field_B'], 'number',
'max' => 3999 ,
'min' => 0000,
'tooBig'=> 'The Value is too big',
'when' => function ($model) {
return $model->Absatzart;
},
'whenClient'=> new JsExpression("
function (attribute, value) {
if ($('input[type=radio]:checked') =='1') {
return true;
}
return false;
}")
],