Wiki

Articles tagged with "forms", sorted by ratingX
Displaying 1-8 of 8 result(s).

Understanding "Safe" Validation Rules

Created 2 years ago by Steve FriedlFAQs8 comments – viewed 41,740 times – ( +74 )
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.

XUpload Workflow

Created 11 months ago by AsgarothTutorials18 comments – viewed 21,885 times – ( +28 )
This wiki describes a more complex workflow using the XUpload widget

An easy way to display a success page using flash messages

Created 2 years ago by qiangTips2 comments – viewed 14,360 times – ( +23 )
We often need to display a success page after the user has submitted a form without problem. We may show some welcome message after a user registers a new account. There are many ways to implement this workflow. In this article, I will explain a method that exploits flash messages.

Drop down list with enum values for column of type ENUM >+> incorporate into giix

Created about a year ago by c@cbaHow-tos2 comments – viewed 13,274 times – ( +11 )
Let's say our table 'mug' has a column named 'color' of the type ENUM('red','green','blue'). We want to replace the textfield for the attribute color in the create and update forms of a 'mug' with a drop down list, which has the enum values as options. The main code was contributed by zaccaria in the forum (see this post).

File uploads in CForm (Form builder)

Created about a year ago by Luke JurgsHow-tos2 comments – viewed 21,793 times – ( +8 )
While there is a reasonable amount of documentation regarding CForm (form builder) and file uploads seperately, there really is not any coverage of both in combination.

MVC primer and 5 minute form walkthrough

Created about a year ago by rix.rix.Tutorials0 comments – viewed 11,943 times – ( +8 )
This tutorial assumes some basic knowledge of Yii and a functional development environment.
tags: Forms, tutorial, mvc

Radio Button List with enum values for column of type ENUM >+> incorporate into giix

Created about a year ago by pckabeerHow-tos1 comment – viewed 6,713 times – ( +6 )
Let's say our table 'mug' has a column named 'color' of the type ENUM('red','green','blue'). We want to replace the textfield for the attribute color in the create and update forms of a 'mug' with a Radio Button List, which has the enum values as options. This is a rewrite of c@cba in the wiki article of enumDropdownListThe main code was contributed by zaccaria in the forum (see this post).

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

Created 3 months ago by nlacTutorials2 comments – viewed 4,883 times – ( +5 )
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.