Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners
Testimonials
Charles Phillips: "I very much like the program and all of its functionality! Would be happy to give you an endorsement or recommend it to others - saves me a ton of time".
George Westrup: "I have saved so much time using your products. Also you are quick to respond to every question I have had. Thanks for the great support".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

OnPrepareFilterBuilder

This event allows you to setup initial condition for the Filter Builder tool.

 

Signature:

function OnPrepareFilterBuilder(FilterBuilder $filterBuilder,

               FixedKeysArray $columns)

 

Parameters:

$filterBuilder

An instance of the FilterBuilder class.

$columns

An associative array of columns available in the tool.

 

Example

This example shows how to setup initial value for Filter Builder (available live in the Feature Demo).

 

$rootGroup = new FilterGroup(FilterGroupOperator::OPERATOR_AND,

    array(

        new FilterCondition($columns['rating'], 

            FilterConditionOperator::IS_BETWEEN, array(5, 7)),

        new FilterCondition($columns['genre_id'],

            FilterConditionOperator::EQUALS, array(14), array('Fantasy'))

    )

);

$filterBuilder->setFilterComponent($rootGroup);

 



Prev Return to chapter overview Next