Wiki

Sorted by ratingX
Displaying 311-320 of 469 result(s).

Autocomplete in console command

Created about a year ago by StammTutorials1 comment – viewed 5,293 times – ( +3 )
Missed of autocomplete in bash console commands yii make me sad.

How to use Flash, Zend AMF and Yii Framework

Created about a year ago by janistoTutorials0 comments – viewed 6,229 times – ( +3 )
This is a simple demo how to use Zend_AMF with Yii.
tags: flash, zend, Zend_AMF, AMF

How to add a named scope to ActiveRecords with a behavior

Created 4 years ago by MikeTutorials1 comment – viewed 9,490 times – ( +3 )
Since Yii 1.0.5 you can use named scopes with ActiveRecords. They are a great help in simplifying your query calls.

How to use markItUp! on a text field for full WYSIWYG editing

Created 3 years ago by lucifuriousTutorials2 comments – viewed 13,504 times – ( +3 )
This tutorial will show you how to use the Pogostick Yii Extension Library to make an HTML TEXTAREA input element into a full-fledged WYSIWYG editor pretty much with very little code.

History Autocomplete

Created about a year ago by zaccariaHow-tos2 comments – viewed 5,485 times – ( +3 )
In application development we often have to choose how to mange recurrent values.
tags: autocomplete

CGridView keep state of page and sort.

Created about a year ago by DanielHow-tos3 comments – viewed 10,071 times – ( +3 )
Remember-filters-gridview is one of the must-use extension on all of my project. However, it lacks of storing the page and sort variables of the grid view.

Add information to Yii::app()->user by extending CWebUser (better version)

Created 2 years ago by emixTutorials3 comments – viewed 13,614 times – ( +3 )
I found a better solution.

How to setup CKeditor

Created 10 months ago by Dark-SunTutorials3 comments – viewed 7,111 times – ( +3 )
To start with you need to download the latest stable release of CKeditor. Extract the downloaded file and place the ckeditor/ folder in your applications webroot directory. (beside "protected" and "css" and other directories)

Yii and XAMPP server on Windows

Created 2 years ago by TrejderTutorials0 comments – viewed 28,474 times – ( +3 )
This article explains issues about installing XAMPP server package (Lite version) on Windows OS and configuring it for serving webapps written in Yii. Please note, that XAMPP is available for many more platforms and systems. I write about Windows edition as it was the only one tested by me.
tags: windows, xampp, server

Custom Number Formatting or Decimal Separators and i18n

Created 9 months ago by c@cbaTutorials4 comments – viewed 9,843 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...