Field.helpText
Property Description |
The help text for the field. |
Type |
string (read-only) |
Supported Script Types |
Suitelets User event scripts -beforeLoad entry point For more information, see SuiteScript 2.x Script Types. |
Module |
|
Since |
– |
Syntax
Important:
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/ui/serverWidget Module Script Samples.
//Add additional code
...
var form = serverWidget.createForm({
title : 'Simple Form'
});
var field = form.addField({
id : 'custpage_textfield',
type : serverWidget.FieldType.TEXT,
label : 'Text'
});
field.setHelpText({
help : "Help Text Goes Here."
});
var fieldHelpText = field.helpText;
...
//Add additional code