Wiki

Articles in category "tutorials", sorted by viewsX
Displaying 101-110 of 175 result(s).

Events explained

Created about a year ago by pligorTutorials5 comments – viewed 12,136 times – ( +17 / -2 )
Let's see what exactly are the events in Yii!

MVC primer and 5 minute form walkthrough

Created about a year ago by rix.rix.Tutorials0 comments – viewed 11,950 times – ( +8 )
This tutorial assumes some basic knowledge of Yii and a functional development environment.
tags: Forms, tutorial, mvc

Performance - A Guide For Best Practice

Created 3 years ago by Y!!Tutorials3 comments – viewed 11,940 times – ( +8 / -5 )
In this guide I will explain best practise regarding performance in MySQL, PHP and of course our loved Yii Framework. Since this is a complex topic, I will start with some basics and then expand this guide from time to time. Since this wiki can become big, you may click on View history - there you can see what changes have been made, so you don't miss anything.
tags: performance

Using CJuiDialog to display flash Messages in Dialogues

Created 2 years ago by thyseusTutorials1 comment – viewed 11,715 times – ( +10 )
In order to nicely display flash Messages, create view like this called views/site/dialog.php :

Enabling Gzip

Created 3 years ago by pestaaTutorials5 comments – viewed 11,642 times – ( +5 / -1 )
Adding HTTP compression to your application could never have been easier!

How to use Highslide for image popups

Created 4 years ago by mocapapaTutorials0 comments – viewed 11,348 times – ( +1 )
You can download the highslide javascript from http://highslide.com/. And here is an explanation on that URL;
tags: image, popups

Functional Testing in Yii using Goutte and PHPUnit

Created about a year ago by puteraTutorials2 comments – viewed 11,226 times – ( +5 )
Functional Testing in Yii using Goutte and PHPUnit

How to access a component of a module from within the module itself

Created 4 years ago by OriginalCopyTutorials1 comment – viewed 11,176 times – ( +2 / -1 )
The Yii documentation states:
tags: module

Yii for beginners 2

Created 3 months ago by rackyczTutorials2 comments – viewed 11,139 times – ( +21 )
Hi :-) Is that you again? Welcome !! :-)
tags: Created

Custom Number Formatting or Decimal Separators and i18n

Created 10 months ago by c@cbaTutorials6 comments – viewed 11,099 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...