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

Subscribe to our news:
Partners
Testimonials
Jonathan Oakes: "This is a lovely application. It's easy to hook into my own bespoke applications. It's very powerful, yet really quite simple to use. Thanks for this".
Dave Lantz: "I have to say that I simple love this product and its ease of use. I know that I have only tapped into about 20% of what it can do. In my business I come into a lot of contact with developers and I tell them all, that if they need an easy way to connect, report or work their databases they MUST check out your products".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

setPlaceholder

Specifies a short hint that describes the expected value of an input field (e.g. a sample value or a short description of the expected format). The short hint is displayed in the input field before the user enters a value.

 

Signature:

function setPlaceholder(value)

 

Example:

To add a placeholder to an Insert form depending of the entered first name, place the following strings to the OnInsertFormValueChanged.

 

if (editors['first_name'].getValue() == 'John')

{

    editors['last_name'].setPlaceholder('Hi, John! Enter here your surname :).');

}

 

 

 

See also: getPlaceholder



Prev Return to chapter overview Next