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

Subscribe to our news:
Partners
Testimonials
Svetlio Mitev: "I am really sure that you guys can make the best PHP code generators to be found worldwide".
Johnson Sieu: "Your PHP Generator is the BEST that I have used so far. It is affordable and user-friendly. Congratulation for coming up with such a fine product. I will not hesitate to introduce it to my peers".

More

Add your opinion

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