Wiki

Sorted by date (updated)X
Displaying 151-160 of 470 result(s).

Serial Numbers (item counts) in GridView

Updated 7 months ago by Maurizio DombaHow-tos2 comments – viewed 3,387 times – ( +1 )
Sometime we need to display numbers of items per page with their counting as a serial number.

A simple go back button widget

Updated 7 months ago by bennounaHow-tos5 comments – viewed 6,948 times – ( +3 / -2 )
We all know that widgets are really useful. We can use the almost everywhere we want, and we can use the same code a lot of times ( Almost OOP ).

[pt-br] O guia de estudos do Yii para iniciantes

Updated 7 months ago by Rodrigo CoelhoTips0 comments – viewed 2,802 times – ( +1 )
You can find the english version of this wiki here: The complete beginner's study guide for the Yii Framework.

Using phpseclib with Yii

Updated 7 months ago by nkdHow-tos6 comments – viewed 3,372 times – ( +2 )
I installed phpseclib because I needed to do some AES encryption in my project. After all the hassle of installing php lib, I found out that Yii already has a security module (securityManager). I finally decided to keep using phpseclib because it has one big advantage over Yii securityManager module, it does not requite mcrypt to be installed in the phpserver!
tags: security

CGridView, CListView and CActiveDataProvider

Updated 8 months ago by softarkTutorials11 comments – viewed 32,466 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.

Elementary introduction to using jQuery ajax and the yii framework

Updated 8 months ago by François GannazHow-tos4 comments – viewed 12,245 times – ( +5 )
In doing internet searches trying to learn how to incorporated ajax into web pages generated by the yii framework I noticed that there seems to be a lot of confusion. I worry that too-clever hacks will be broken in upgrades of the framework.
tags: AJAX

YiiBackboneBoilerplate - Project Setup for your Yii+BackboneJS applications

Updated 8 months ago by Antonio RamirezOthers4 comments – viewed 9,977 times – ( +10 )
YiiBackboneBoilerplate
tags: directory, config

Ajax form submiting in Yii

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

How to hide index.php on Microsoft Windows Server with IIS7

Updated 8 months ago by GiulianoHow-tos1 comment – viewed 4,037 times – ( +7 )
I've seen lot of people struggling in finding a way to hide the script name when installing their Yii Application. In an Apache environment everything is well documented in this wiki article, but for those who are running their app on a Windows Server machine there are no hints.

How to "masquerade" a non-required form element as 'required' one (in the view only)

Updated 8 months ago by BoazHow-tos2 comments – viewed 3,333 times – ( +5 / -1 )
In a nutshell, the task at hand is to mark (or render) a model attribute in the typical "_form.php" view file with the 'required' red asterisk while this attribute is not marked as required in the model's rule() method. If you're interested only in the solution, jump ahead to the 'solution' section below.