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

Subscribe to our news:
Partners
Testimonials
Anley Lafleur: "I cannot wait to start using your exciting product and I am sure it will help me achieve my objectives".
John Gondek: "Your software is amazing. I consider myself a novice at PHP and JS and with your software I have a web page that is truly fantastic. Thank you so much ".

More

Add your opinion

PostgreSQL PHP Generator 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