Wiki

Articles tagged with "validation", sorted by commentsX
Displaying 1-7 of 7 result(s).

Understanding "Safe" Validation Rules

Created 2 years ago by Steve FriedlFAQs7 comments – viewed 39,841 times – ( +72 )
A common source of confusion among new Yii users is how the 'safe' validator works, how it works with other validators, and why it's necessary in the first place. This article means to clear up this confusion, as well as explain the notion of Massive Assignment.

Reference: Model rules validation

Created 3 years ago by krillzipHow-tos4 comments – viewed 253,540 times – ( +85 )
This is a reference to be used for Model rule validation and is compiled from the Yii documentation and code. The purpose is to have all the information gathered in one place instead of scattered. This reference is not an intro. See The Definitive Guide to Yii, Declaring Validation Rules for a tutorial.

Enforcing "You must agree" requirements in forms

Created 2 years ago by Steve FriedlHow-tos2 comments – viewed 9,237 times – ( +26 )
Checkboxes have two possible values, true and false, but some applications require that the user select one particular value before proceeding. Examples might be:
tags: validation

A simple way to get Yii client-side form validation run when submitting by ajax

Created 2 months ago by nlacTutorials1 comment – viewed 3,760 times – ( +4 )
A time ago i've met the issue that Yii doesn't run any client-side form validation when submitting the form by CHtml::ajaxSubmitButton. The small javascript below helps to fix it.

Working with radiobutton list

Created 10 months ago by vibhaJadwaniTutorials0 comments – viewed 12,924 times – ( +8 )
This is a tutorial to work with radioButtonList which will handle enum datatype. Form design and validation both are detailed here.

Client-side form validation using Twitter Bootstrap's Popovers

Created about a month ago by TrejderHow-tos0 comments – viewed 7,752 times – ( +3 )
This article explains how to easily turn standard text-line validation errors into beautifully and professionally looking Twitter Bootstrap's Popovers.

Debugging CActiveRecord failed save() attempts

Created 3 days ago by BoazTips0 comments – viewed 718 times – ( +4 )
When you're filling up a form of a CActiveRecord (using CActiveForm for example), usually you'll construct your code so that in case of validation error you'll get back the form with the error displayed back to you, typically when CActiveForm.errorSummary() is used. This is how its done by Gii.