Wiki

Displaying 121-130 of 467 result(s).

Customize CGridView columns directly in your view

Created 9 months ago by clapasTips2 comments – viewed 9,372 times – ( +2 / -1 )
You usually take a model instance passed into your view to provide data to a CGridView in this way:

Using sub query for doubletts

Created 9 months ago by mbTips3 comments – viewed 3,734 times – ( +1 )
find doubletts by db fields. in this example i will check doublets for 3 tabelfields (col1,col2,col3). so i will get a subquery with the condition, select and grouping of the tablefields. the having with COUNT() > 1 means: find all records more then one result.

How to use Multiple instances of the same model in the same form

Created 9 months ago by kiran sharmaHow-tos15 comments – viewed 10,100 times – ( +16 / -2 )
When i had created this functionality then i found some difficulties and not got much idea from wiki and forums. so, i think this will be useful for newbie users and save time of other developers when create related functionality. I refer Collecting Tabular Input tutorial but not got clear idea for create/update.

Simple way to use AutoComplete using different ID and Display Value

Created 9 months ago by raheelk2kTutorials1 comment – viewed 9,165 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,720 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...

Yii behind a reverse proxy, SSL support and correct IP logging

Created 9 months ago by mrkmgTips0 comments – viewed 2,614 times
If you are hosting Yii behind a reverse proxy, for example nginx, and you are having issues with your logs showing the proxies IP, or the urls being created arn't being created for SSL because your SSL certs are located on your reverse proxy instead of the Yii server, this code may be able to help you. I placed them in the very top of Yii's entry script, index.php

Extending CJuiDialog

Created 9 months ago by dstudioHow-tos0 comments – viewed 5,150 times – ( +2 / -2 )
Sometimes you have CJuiDialog with different content but same buttons (or width, height). If you don't want to repeat yourself this is a great solution:

How to render a view in Fancybox using ajax

Created 10 months ago by rix.rix.How-tos1 comment – viewed 10,018 times – ( +5 / -1 )
Sometimes you want to render a view in Fancybox.
tags: fancybox, ajax, views

How to create front and admin side login form

Created 10 months ago by vibhaJadwaniHow-tos6 comments – viewed 21,003 times – ( +4 )
In this WIKI you can learn how to create front and admin login form, using database.

Auto set model fields values

Created 10 months ago by vibhaJadwaniTutorials3 comments – viewed 7,253 times – ( +6 )
This is a tutorial for how to auto set model values without any code.