Wiki

Articles in category "how-tos", sorted by date (updated)X
Displaying 41-50 of 183 result(s).

Cheat Sheet: Displaying Name instead of Numbers and Displaying Alphanumeric instead of numeric values

Updated 4 months ago by skwordenHow-tos4 comments – viewed 5,542 times – ( +3 / -1 )
I keep a reference to some simple but painful task if you forget a common or something. I am new to Yii and this took awhile for me to figure out. Everything I read said do this or do that and not a single one worked for me. However, the following did.

PayPal Integration And IPN (Instant Payment Notification)

Updated 4 months ago by yasenHow-tos3 comments – viewed 5,505 times – ( +7 )
Had to implement PayPal payments for a client and would like to share part of my code with you. Because the tutorial will become too long, I'll leave some code to be done by you, e.g. creating models, controllers and db tables for products, orders.

jQuery UI Datepicker

Updated 4 months ago by softarkHow-tos0 comments – viewed 12,765 times – ( +8 )
We all love the convenient gadget, namely jQuery UI Datepicker as an input element for date. Yii supports it as CJuiDatePicker. Let's see how to use it.

Additional form data with XUpload

Updated 4 months ago by AsgarothHow-tos5 comments – viewed 10,196 times – ( +5 )
In this article you'll learn how to send additional form data when uploading files using XUpload widget

Using CJuiDatePicker for CGridView filter

Updated 4 months ago by softarkHow-tos3 comments – viewed 15,621 times – ( +16 )
We can use a CJuiDatePicker for a CGridView inline filter.

How to show ajax delete status in CGridView like flash messages

Updated 4 months ago by adlersdHow-tos9 comments – viewed 18,725 times – ( +16 )
I've seen many tickets regarding how to show friendly delete confirmation using CGridView's CButtonColumn in ajax request. If you are using relational database, after producing CRUD functionality when you try to delete a record in ajax mode which has child record it can't be deleted and you can see the ajax loader forever. By this way you can't show the users if a record has been successfully deleted or if there are some problem in flash style (setFlash() / getFlash())

Handling recursive deletion in Yii

Updated 5 months ago by JamesBarnsleyHow-tos3 comments – viewed 3,428 times – ( +3 )
As a lead developer at Mutable Labs I was tasked to find a way to do recursive deletion in Yii. As I asked other developers and looked around the internet the usual answers all came up, use a plugin or use cascade delete at the DB level, but I did not want to do either of these.

Multilanguage Lorem Ipsum Text Generator

Updated 5 months ago by yasenHow-tos0 comments – viewed 2,416 times – ( +2 )
Taking futher the idea from Piotr Masełkowski - http://www.yiiframework.com/extension/elipsum/ here's how to generate multilanguage Lorem Ipsum text. This example uses English and Bulgarian sample paragraphs. Create a class in /protected/components/LoremIpsum.php. Wall of text incoming wohoo...

TimeZone dropDown

Updated 5 months ago by Maurizio DombaHow-tos0 comments – viewed 3,197 times – ( +1 )
I spend a bit of time looking for the this piece of code while building time feature on a site this tutorial also helped Local time zones and locales

Load the Yii-Bootstrap Extension on Specific Actions

Updated 5 months ago by chuntleyHow-tos5 comments – viewed 6,318 times – ( +8 )
A big problem I've hit with the Yii-Bootstrap extension is that all AJAX requests are initializing Bootstrap because of preload. This is a huge waste of resources, especially when using AJAX-based file uploaders that split the file into chunks. Large file uploads using that method could be initializing bootstrap hundreds of times.
tags: bootstrap, filter