gxp.plugins.FormFieldHelp
¶
-
class
gxp.plugins.
FormFieldHelp
(config)¶ Plugin for showing a help text when hovering over a form field. Uses an Ext.QuickTip.
Example Use¶
The code example below shows how to use this plugin with a form field:
var field = new Ext.form.TextField({
name: 'foo',
value: 'bar',
plugins: [{
ptype: 'gxp_formfieldhelp',
helpText: 'This is the help text for my form field'
}]
});
Config Options¶
Configuration properties.
-
dismissDelay
Integer
How long before the quick tip should disappear. Defaults to 5 seconds.
-
helpText
String
The help text to show.