Difference between #7 and #8 of
Using filters with CGridView and CArrayDataProvider

Revision #8 has been created by yugene on Oct 22, 2013, 7:56:56 AM with the memo:

allow to filter by 0 which is needed often with drop-down filters for example
« previous (#7)

Changes

Title unchanged

Using filters with CGridView and CArrayDataProvider

Category unchanged

How-tos

Yii version unchanged

Tags unchanged

CGridview, CArrayDataProvider, filters, filter

Content changed

[...]
*/
public function filter(array $data)
{
foreach ($data AS $rowIndex => $row) {
foreach ($this->filters AS $key => $searchValue) {
if (!
emptyis_null($searchValue) AND $searchValue !== '') {
$compareValue = null;

if ($row instanceof CModel) {
if (isset($row->$key) == false) {
throw new CException("Property " . get_class($row) . "::{$key} does not exist!");
[...]
19 0
29 followers
Viewed: 92 869 times
Version: 1.1
Category: How-tos
Written by: marcovtwout
Last updated by: yugene
Created on: Sep 12, 2011
Last updated: 10 years ago
Update Article

Revisions

View all history