Wiki

Articles in category "tips"X
Displaying 11-20 of 99 result(s).

PHPStorm & NetBeans autocomplete problem

Created 2 months ago by StagelineTips0 comments – viewed 3,006 times – ( +16 )
The problem: If you type Yii::app()->user<ctrl+space> code completion didn't work. This solve it.

Assigning dynamic roles to a user Using yii Rights module at the time of user creation and using some special advanced features of yii rights

Created 3 months ago by Rajith RTips0 comments – viewed 5,360 times – ( +4 )
After Installing Yii Users and Rights to Newly Created Yii app we have to assign dynamic roles to a user at the time of user creation .

Speedup unit tests by moving MySql data to memory (in Ubuntu)

Created 5 months ago by sebTips0 comments – viewed 2,811 times – ( +1 / -1 )
Speedup unit tests by moving MySql data to memory [Ubuntu]
tags: mysql, unit test

An Easy Solution for Dependent dropDownList Using AJAX

Created 5 months ago by mrsTips6 comments – viewed 13,676 times – ( +6 )
Sometimes new Yii guys face problem to manage dependent dropDownList using AJAX. I am going to discuss an easy solution about this issue.

Adding 'disabled' to CCheckBoxColumn and support for yiigridview.js

Created 6 months ago by Xgamer99Tips3 comments – viewed 4,035 times – ( +1 )
I recently had to have a checkbox column in my grid view that supported the 'disabled' attribute. This was easy enough to do by extending the CCheckBoxColumn. However, I also wanted the checkbox to be selected when clicking on the table's row (supported via CGridView's selectableRows option). I discovered I had to tweak yiigridview.js so that it would not select disabled rows when clicking on it or on the 'select all' checkbox.

Yii shorten common functions with OOP style

Created 6 months ago by pdtkameTips3 comments – viewed 3,726 times – ( +9 / -14 )
This article will show how you can use Yii common functions as shorten OOP function. These functions will help you work with Yii common functions is easier as OOP style.

Setting static modules' properties in config

Created 7 months ago by Alexander PalamarchukTips0 comments – viewed 2,788 times – ( +2 / -2 )
You may face a situation when you need to access to a configurable module's property from everywhere and you don't have an instance of this module's class.
tags: config, module

Making friends' configs, DB credentials and paths with version control

Created 7 months ago by Alexander PalamarchukTips1 comment – viewed 2,723 times – ( +2 / -1 )
In many cases developers of one project use their own local environments for coding. There may be a common test platform and, of course, production. All these environments usually have different DB credentials and directory structures (first of all, path to YII framework directory). Another feature is debugging. It's convenient to turn it on for local environments, eventually - on the test server and never (generally speaking) - on the production.
tags: config

[pt-br] O guia de estudos do Yii para iniciantes

Created 7 months ago by Rodrigo CoelhoTips0 comments – viewed 2,796 times – ( +1 )
You can find the english version of this wiki here: The complete beginner's study guide for the Yii Framework.

The complete beginner's study guide for the Yii Framework

Created 7 months ago by Rodrigo CoelhoTips2 comments – viewed 17,306 times – ( +18 )
Start studying the MVC pattern. You will understand the roles of the model, the view and the controller and know where goes each part of the code.