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