How to switch on\off frontend form validation for some fields in yii2?

后端 未结 6 2259
灰色年华
灰色年华 2021-02-20 01:41

I have got difficult form in yii2 view, where some fields show or hide. It decide from user field choises, select options in the form. I write this frontend logic with custom jq

6条回答
  •  我在风中等你
    2021-02-20 01:54

    $form->field($model, 'youAttribute', ['enableClientValidation' => false])->textInput();
    

    The ActiveField class has a property enableClientValidation, you can simply set this property to false if you want to disable clientValidation form some fields.

提交回复
热议问题