Wiki

Sorted by date (updated)X
Displaying 331-340 of 468 result(s).

Multilanguage web site controlling by get request and database allowed languages

Updated about a year ago by reiTutorials2 comments – viewed 12,042 times – ( +6 )
First, you have to have create database table for default language and allowed languages.

Configuring CWebLogRoute for DB profiling

Updated about a year ago by Igor IvanovicTutorials1 comment – viewed 9,144 times – ( +3 )
/index.php /protected/config/main.php
tags: logger, profiler, db

Caching the config main.php

Updated about a year ago by dckurushinTutorials10 comments – viewed 7,934 times – ( +4 / -1 )
The config long array included every time, and it's not cached at all!

Using cache in CActiveDataProvider

Updated about a year ago by StammTips7 comments – viewed 9,134 times – ( +17 )
First param in CActiveDataProvider could be a string with model name or instance of class. So, you may use CActiveRecord::cache() for cache, but you need set third param to 2, because you should cache 2 queries: counting and get data.

Avoiding duplicate script download when using CActiveForm on Ajax calls

Updated about a year ago by Maurizio DombaTutorials2 comments – viewed 9,955 times – ( +11 / -1 )
Sometimes the active form we wish to use to edit/add a new element on our database is too small and we believe that is much better to use an AJAX'ed dialog/slide form rather than reloading the page to just display one or two fields.

Customizing Yii's formatting rules (extending CFormatter)

Updated about a year ago by HaenselTips0 comments – viewed 8,389 times – ( +14 )
CFormatter is one of Yii's core components and used to format values displayed in widgets like CGridView or CDetailView. All classic formats like numbers, text, urls or datetime are supported but you may have to use a formatting rule that isn't built in. Let's say we want to display arrays of strings (like tags associated with a product model). When using CDetailView we would usually make use of PHPs implode function to create a simple string value of all values in the $product->tags array.

A simple action for CJuiAutoComplete

Updated about a year ago by Thiago SouzaTips7 comments – viewed 17,751 times – ( +14 / -1 )
More or less I use auto-complete field for a form. CJuiAutoComplete is a yii widget for this purposes. The common use case is to make an ajax request and retrieve a list from the database. So in this case you have to write a controller action to return you a json encoded list. What if I had a generic action to do this work for me?

Display a nice exception message on ajax requests

Updated about a year ago by Maurizio DombaTips1 comment – viewed 15,141 times – ( +11 )
When an exception is thrown in our code like
tags: error, exception

How to use EzComponents in Yii

Updated about a year ago by samdarkHow-tos0 comments – viewed 5,729 times – ( +5 )
change your index.php

Configuring controller access rules to default-deny

Updated about a year ago by samdarkHow-tos1 comment – viewed 29,381 times – ( +10 )
Starting with the blog tutorial, Yii developers are familiar with the notion of access rules defined in the controller, where the actions are allowed or denied depending on the user's name or role.