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

Subscribe to our news:
Partners
Testimonials
Craig Cordell: "The simplicity of your code generator is fantastic. We've evaluated dozens of others over the past few years but have yet to find one that is as easy to use as yours".
Patrick Biegel: "Thanks a lot for your fast reply and the great solution! It works now and that's really important! The PHP Generator for MySQL is a great software".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

OnCalculateControlValues

This event occurs whenever the values of calculated columns are (re)computed in Edit and Insert forms. Live examples.

 

Signature:

function OnCalculateControlValues(editors)

 

Parameters:

editors

An associative array of form controls. To access the value of the editor of the column_name column, use the editors['column_name'] syntax.

 

Example 1:

This code snippet sets the value of the control displaying the full name according to values entered in the controls displaying first and last names.

 

editors['full_name'].setValue(editors['first_name'].getValue() + ' ' + 

    editors['last_name'].getValue());

 

Example 2:

This code snippet sets the value of the control displaying the age according to the entered birthday. To simplify the code, the Moment.js library is used.

 

if (editors['birthday'].getValue()) {

    require(['moment'], function(moment) {

        editors['age'].setValue(

            moment().diff(editors['birthday'].getValue(), 'years')

        );

    });

}

 

See also:

OnCalculateFields.



Prev Return to chapter overview Next