Wiki

Articles in category "tutorials"X
Displaying 21-30 of 172 result(s).

Catching bounce messages (NDR) and piping them to a Yii command

Created 8 months ago by bennounaTutorials0 comments – viewed 3,228 times – ( +1 )
In order to avoid bounce messages and unsolicited registrations, most webapps send automatic activation emails upon user registration, and the account remain inactive as long as it is not activated. Better yet, you can periodically purge your data by removing accounts that have not yet been activated.

Ajax form submiting in Yii

Created 8 months ago by sirin kTutorials6 comments – viewed 27,290 times – ( +6 / -2 )
hi guys, Here I'm going to give you a working example of ajax form submiting in Yii.

Displaying, sorting and filtering HasMany & ManyMany relations in CGridView

Created 8 months ago by yJeroenTutorials8 comments – viewed 16,477 times – ( +11 )
This tutorial gives you multiple options of how to fully implement showing, sorting and filtering related data in gridviews.

CGridView, CListView and CActiveDataProvider

Created 8 months ago by softarkTutorials11 comments – viewed 32,295 times – ( +28 )
CGridView (or CListView) together with CActiveDataProvider is a very powerful combination of the built-in tools of Yii. But how do they work together to accomplish their fantastic functions? And what are you expected to do to use them and to customize their behaviors? This article explains the very basics of them.

Facebook DeAuthorize callback URL and its response data.

Created 8 months ago by sirin kTutorials1 comment – viewed 3,312 times – ( +3 )
Facebook Deauthorize callback is used to getting notification to the app owner when a user uninstall our app from their fan page or profile.
tags: facebook

Create Yii Project In Cloud9

Created 9 months ago by BenTutorials5 comments – viewed 7,708 times – ( +3 )
This tutorial will guide you through the process of creating a yii application using Cloud9. We will use a git workspace to enable version control and also show how to link the Cloud9 workspace to GitHub.

CButtonColumn: Use special variable $data for the 'id' in the 'options' of a button

Created 9 months ago by bluezedTutorials5 comments – viewed 7,161 times – ( +6 )
In an application I had a CGridView with a CButtonColumn and for an Ajax-Request I needed to make sure that the IDs of the buttons would not change when the GridView was updated so in effect I wanted to link them to the $data->id. So I tried:

Create image thumbnails with php_img_preview

Created 9 months ago by Anas AbuDayahTutorials5 comments – viewed 5,580 times – ( +3 )
This is another way to view images in your application and I like this way because it's simple and I think it's better performance than other.
tags: images, views

Simple way to use AutoComplete using different ID and Display Value

Created 9 months ago by raheelk2kTutorials1 comment – viewed 9,247 times – ( +3 )
Usually when we use AutoComplete in a project, We need to show "title" or "name" in the list, while when the form is posted, we need some sort of integer ID referring to the selected value. Out of the Box, CJuiAutoComplete widget doesn't provides different display text and post values.

Custom Number Formatting or Decimal Separators and i18n

Created 9 months ago by c@cbaTutorials4 comments – viewed 9,903 times – ( +3 )
By default, the decimal separator in php (also in mysql) is a dot (.). So when we work with floats in Yii (in calculations, validation, sql statements etc.), the decimal separator has to be a dot. If we want to use for example a comma (,) as the decimal separator, that is if we want to display numbers and enable users to enter numbers with a comma before the decimals, we have to...