I've an active form in my application. But the client side validation is not working. The code of the form are as shown below:
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'application-data-student-form',
'enableAjaxValidation'=>false,
'enableClientValidation'=>true,
'clientOptions'=>array('onSubmit'=>true),
'htmlOptions'=>array(
'enctype'=>'multipart/form-data',
'role'=>'form',
'class'=>'form-horizontal'
),
)); ?>
I've used bootstrap 3 in my project. Any idea or solution will be highly appreciated from anybody . . .