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

后端 未结 6 1535
傲寒
傲寒 2021-02-20 01:44

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:56

    To disable client side validation. Begin your active form like this.

    ActiveForm::begin(['enableClientValidation'=>false]);
    

提交回复
热议问题