In form file : 1 2 3 4 5 6 7 8 9101112131415161718 <?= $form->field($model, ‘country_id’)->dropDownList([“5″=>’USA’, “6”=>”Pakistan”], [‘prompt’=>’Select Country’, ‘onchange’=>’ $.get( “‘.yiihelpersUrl::toRoute(‘/site/getstates’).'”, { id: $(this).val() } ) .done(function( data ) { $( “#’.Html::getInputId($model, ‘state_id’).'” ).html( data ); } ); ‘,’class’ => ‘form-control’ ] ); ?> <?= $form->field($model, ‘state_id’) ->dropDownList( [ ‘prompt’=>’Select State’, ] ); ?>… Continue reading Yii2 . FORM How to make dependant drop down. Where second drop downs values are dependant on first drop down selection
Category: form
YII Client side form validation error doesn’t prevent form submit
YII Client side form validation error doesn’t prevent form submit To get this behavior you just need to add ‘clientOptions’ => array(‘validateOnSubmit’=>true), to your configuration so it would look like this: $form=$this->beginWidget( ‘CActiveForm’, array( ‘id’=>’member-form’, ‘enableAjaxValidation’=>false, ‘enableClientValidation’=>true, ‘clientOptions’ => array(‘validateOnSubmit’=>true), ));
YII, form simple drop down
YII, form simple drop down <?php echo $form->dropDownList($model, ‘sex’, array(‘1’ => ‘male’, ‘2’ => ‘female’), array(’empty’ => ‘Select one of the following…’)); ?>
yii, form, create drop down with values from a model
yii, form, create drop down and populate it with values from any model : Use code below in the view file inside the form: <?php echo $form->dropDownList($model,’item_type_id’, CHtml::listData(ItemType::model()->findAll(), ‘id’, ‘type’), array(’empty’=>’select Type’)); ?>
Yii, Ccaptcha. Captcha image doesnt show
Yii Ccaptcha Captcha refers to the imagery device ment to capture bots attempting to fill out your forms for automatic spam submission. It auto generates images with codes that users have to input to submit a form to avoid such spam bot issues. The only real forms that would require this device would be forms… Continue reading Yii, Ccaptcha. Captcha image doesnt show
yii, some form validation examples
Yii some basic form validations using rules in modelslike email, compare password (match password), date, unique, captcha etc Below is full model code: <?php/** * This is the model class for table "users". * * The followings are the available columns in table 'users': * @property integer $user_id * @property string $user_name * @property string… Continue reading yii, some form validation examples