Wiki

Displaying 11-20 of 469 result(s).

Implementing menu items with progress (wait) dialog

Created 28 days ago by TrejderHow-tos0 comments – viewed 2,429 times – ( +1 )
This article shows one of possible ways to implement menu items (as well as links), which displays a progress / wait dialog and are redirecting browser to destination URL in the same time. This is especially useful, for links or routes that are know to be loaded for a prolonged period of time (i.e. getting a lot of data from database).

Client-side form validation using Twitter Bootstrap's Popovers

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

Yiinitializr: The Library

Created about a month ago by Antonio RamirezOthers4 comments – viewed 3,228 times – ( +11 )
Introduction

How to use a component before every action of a controller

Created about a month ago by transistorTips1 comment – viewed 2,660 times – ( +1 )
I guess this is a tip on how to execute some code before every action in a controller, because I will tell you how I did it and maybe you can use the idea in your project.

How to implement an event and attach it in a behavior

Created about a month ago by seb7How-tos0 comments – viewed 1,683 times – ( +2 )
This page explains how to implement an event and catch that event in a behavior.
tags: event, behavior

Yet another implementation of CPhpAuthManager.

Created about a month ago by seenivasanHow-tos2 comments – viewed 2,808 times – ( +4 )
In this wiki, I try to implement a simple authorization schema without putting much logic inside a file or into database table. We are constructing authorization hierarchy inside the controller. We are getting roles for the current user from database table and assigning only roles to user that are declared in the particular controller. We have brought down the work of loading of auth data at main application level to controller level. This way we have pulverised auth data for entire site into smaller units. Finally we are going to look at couple of examples.

CGridView: Adding behaviors from configuration, and template items from behaviors to CGridView

Created about a month ago by le_topTips0 comments – viewed 2,350 times – ( +4 )
Changing the way a CGridView is rendered from the configuration file, or through behaviors specified at the moment it is used, is handy to extend a CGridView without creating tons of different classes for it. I am surprised that this is not in the default implementation, so I made my default CGridView implementation.

Alternative folder structure for a standard Yii app

Created about a month ago by TrejderHow-tos4 comments – viewed 2,278 times – ( +3 )
I found a standard Yii app's protected folder structure nearly perfect. With a few simple moves and a little bit change to the code, I managed to bring it to the level, which I found as fully perfect. I want to share my point of view, in case someone would like to use this structure as well.

How to change Migration Table name and use defined prefix.

Created about a month ago by JorgeeHow-tos0 comments – viewed 1,282 times – ( +3 )
To accomplish the task of changing Migration table's name, by default tbl_migration, you need to add the following in your ./protected/config/console.php.

Using Google Maps in Yii Applications via Jquery

Created about a month ago by bluyellHow-tos0 comments – viewed 2,274 times – ( +2 )