Version 1.7 glow.forms.feedback
API Quick Reference
JavaScript is required to use the quick reference
Collection of functions for displaying validation results to the user
These functions should be used as handlers for glow.forms.Form's validate event. At the moment there is only one provided handler, more may be added in the future.
Of course, you don't have to use any of the methods here, you can provide your own.
Further Info & Examples
Methods
- defaultFeedback
-
Default handler used by glow.forms.Form.
Synopsis
glow.forms.feedback.defaultFeedback(result);
Parameters
- result
-
Object provided by the validate event
Description
This method outputs messages to the user informing them which fields contain invalid data. The output is unstyled and flexible.
Further Info & Examples