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

Subscribe to our news:
Partners
Testimonials
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 ".
Olivier Auverlot: "At my work (a universitary computer research laboratory), I'm alone to create all applications and databases. I don't know how I could do all the work without it. It's really a very productive software. I can focus on the database schemas and create quickly the user applications with a minimal amount of code to maintain".

More

Add your opinion

PostgreSQL PHP Generator online Help

Prev Return to chapter overview Next

OnInsertFormValidate

This event occurs before submitting of an insert form. It allows you to detect errors on the client side before the form is submitted to the server to avoid the round trip of information necessary for server-side validation. Live example.

 

Signature:

function OnInsertFormValidate (fieldValues, errorInfo)

 

Parameters:

fieldValues

An associative array of values containing user input. To access the value of the editor of the column_name column, use the field_values['column_name'] syntax.

errorInfo

The object that provides interface (the SetMessage method) to set a validation error message.

 

Example 1:

The code below demonstrates the verification of the percent number on the record inserting.

 

if (fieldValues['percents'] < 0 || fieldValues['percents'] > 100)

{

    errorInfo.SetMessage('Percent value should be between 0 and 100.'); 

    return false;

}

 

Example 2:

The following code is used in the NBA demo project to ensure that home and away teams are different for an inserted game:

 

if (fieldValues['home_team_id'] == fieldValues['away_team_id'])

{

  errorInfo.SetMessage('Home and away teams must be different');

  return false;

}

 

See also: OnEditFormValidate



Prev Return to chapter overview Next