Wiki

Articles in category "how-tos", sorted by date (updated)X
Displaying 101-110 of 183 result(s).

How to hide `index` action from URL

Updated 11 months ago by rootbearHow-tos2 comments – viewed 6,309 times – ( +3 / -2 )
Here is my experiment inspired by my own question and others from the forum.
tags: index

Avoiding rendering entire page when using CGridView and CListView via AJAX

Updated 11 months ago by xrxHow-tos13 comments – viewed 22,281 times – ( +20 )
Since I used CGridView for a first time, I didn't like how it handled operations like sorting, filtering, changing page and etc using AJAX.

CSV Export

Updated 11 months ago by JohnPollardHow-tos5 comments – viewed 5,589 times – ( +4 )
I needed a csv export function for my cgridview and I wanted to export the entire result set of the sorted and filtered cgridview the user was viewing via ajax.
tags: csv, export

Show captcha after <N> unsuccessfull attempts

Updated 11 months ago by zitterHow-tos6 comments – viewed 7,528 times – ( +14 / -3 )
In this mini howto I would like to show how to add a required captcha field in the login form, after a defined number of unsuccessfull attempts. To do this, I will use the blog demo that you have in default Yii download package (path/to/yii/demos/blog).

Custom Autocomplete Display and Value Submission

Updated 11 months ago by SebKHow-tos5 comments – viewed 21,472 times – ( +12 / -1 )
How many of us has wondered how to create an autocomplete that will display the names of a related models but do require the id of that selected name to be submitted for model creation/update?

Adding Bash Command Completion for Yii Commands

Updated 11 months ago by Dustin OpreaHow-tos0 comments – viewed 3,991 times – ( +1 )
This article discusses the installation/configuration of the YiiBash project (https://github.com/dsoprea/YiiBash).

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

Updated 12 months ago by pckabeerHow-tos1 comment – viewed 6,353 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).

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

Updated 12 months ago by pckabeerHow-tos2 comments – viewed 12,639 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).

Use phing to make Yii application "installable"

Updated about a year ago by Maurizio DombaHow-tos3 comments – viewed 4,906 times – ( +7 )
To use this "how-to", you need to install phing in your machine.
tags: phing

How-To: Create a REST API

Updated about a year ago by jwernerHow-tos38 comments – viewed 104,742 times – ( +86 / -1 )
This article will explain how to create a REST API with the Yii framework.