Wiki

Articles in category "tips", sorted by viewsX
Displaying 1-10 of 103 result(s).

CGridView: Render customized/complex datacolumns

Created about a year ago by JobloTips11 comments – viewed 61,695 times – ( +59 )
If you have to display a overview of related data in a table, you can use the CListView, create your view with table/tr/td tags and implement db-queries in the view to display detaildata of the current (master-)record.
tags: CGridView

Configuring PhpStorm IDE for Yii

Created 2 years ago by samdarkTips13 comments – viewed 44,138 times – ( +52 / -1 )
In order to be able to get from render or renderPartial to the view, from widget to widget class, from relations to model classes you need to install additional plugin called YiiStorm.
tags: IDE, PhpStorm

Guidelines for good schema design

Created about a year ago by Steve FriedlTips13 comments – viewed 36,839 times – ( +128 )
Virtually all Yii applications are built on top of a database, and though Yii is very flexible in how it addresses your DB, some design choices make things more convenient than others.

How to upload image(photo), and path entry in database with update functionality

Created 11 months ago by kiran sharmaTips9 comments – viewed 33,949 times – ( +19 )
I saw many posts that community newbie is confuse in image/photo upload with random name. so I post this topic covering all useful things regarding to image/photo upload(not covering image attribute related functionality)

Ajax update

Created 2 years ago by zaccariaTips1 comment – viewed 33,673 times – ( +20 / -2 )
Often happens to have the need of change a part of the page with ajax.
tags: AJAX

Saving files to a blob field in the database

Created 2 years ago by zaccariaTips7 comments – viewed 27,160 times – ( +6 / -2 )
As a follow-up from the How to upload a file using a model wiki entry that explains how to save a file to the filesystem, this article will do the same using a blob field in the database.
tags: File upload

htmlOptions explained for various controls.

Created 2 years ago by WoilTips1 comment – viewed 25,765 times – ( +16 )
Most controls that are rendered by CHtml have an argument called $htmlOptions. This argument is an array that holds the attributes of the HTML element. For example the following code:

Special $variables in CGridView and CListView

Created about a year ago by Steve FriedlTips8 comments – viewed 23,374 times – ( +18 / -1 )
The popular CListView and CGridView widgets each take a data provider and iterate over each data object produced, calling the user's code to render each row one at a time, and most are familiar with the use of the $data variable to represent the current model object or array.

CGridView: Display the full record (actionView) in a CJuiDialog

Created about a year ago by JobloTips7 comments – viewed 22,702 times – ( +13 )
If you show a model (with a lot of attributes) partially in a CGridView, it can be helpful when the user can take a quick look at the full record with all attributes without displaying the view as a page and afterwards returning back to the gridview.

Styling Radio Buttons

Created 2 years ago by Steve FriedlTips3 comments – viewed 22,659 times – ( +10 )
The default behavior with radio button lists is ugly, and I figured out mostly how to style them a coupla different ways. I'll used the blog tutorial example (but with my own posting modes):