- Contents
- 1. Introduction
- 2. Instance Methods
- 2.1. addChild
- 2.2. addForm
- 2.3. addFormElement
- 2.4. ajax
- 2.5. buildHtml
- 2.6. callInherited
- 2.7. checkIsEmpty
- 2.8. checkWarningShown
- 2.9. clear
- 2.10. confirm
- 2.11. displayNode
- 2.12. fire
- 2.13. flushNodeCache
- 2.14. get
- 2.15. getFormElement
- 2.16. getInherited
- 2.17. getNode
- 2.18. getNodeStyle
- 2.19. getNodeValue
- 2.20. getProvider
- 2.21. globalizeNode
- 2.22. inform
- 2.23. injectNodeHtml
- 2.24. insertOrWireUi
- 2.25. insertUi
- 2.26. is
- 2.27. kill
- 2.28. localize
- 2.29. met
- 2.30. once
- 2.31. removeChild
- 2.32. removeNode
- 2.33. removeUi
- 2.34. reset
- 2.35. set
- 2.36. setInherited
- 2.37. setNodeClipRect
- 2.38. setNodeInnerHtml
- 2.39. setNodeOpacity
- 2.40. setNodeProperties
- 2.41. setNodeStyle
- 2.42. setNodeValue
- 2.43. showNode
- 2.44. submit
- 2.45. toggle
- 2.46. unmet
- 2.47. unwire
- 2.48. unwireNode
- 2.49. unwireNodeEventsByMatch
- 2.50. unwireUi
- 2.51. updateUi
- 2.52. validate
- 2.53. wire
- 2.54. wireNode
- 2.55. wireUi
- 3. Instance Properties
- 4. State Properties
- 4.1. action
- 4.2. built
- 4.3. busy
- 4.4. busyInherited
- 4.5. children
- 4.6. container
- 4.7. enabled
- 4.8. enabledInherited
- 4.9. enctype
- 4.10. html
- 4.11. idPrefix
- 4.12. idPrefixConstruction
- 4.13. insertionMode
- 4.14. isDirty
- 4.15. isDirtyInherited
- 4.16. isEmpty
- 4.17. isFinished
- 4.18. isSubmitting
- 4.19. isValid
- 4.20. localized
- 4.21. method
- 4.22. name
- 4.23. nodeMap
- 4.24. okToSubmit
- 4.25. target
- 4.26. useNormalSubmit
- 4.27. validateWhen
- 4.28. value
- 4.29. warningAllowed
- 4.30. warningAllowedInherited
- 4.31. warningShown
- 4.32. warningShownWhen
- 4.33. wired
- 5. Static Methods
- 5.1. Uize.Widget.Form.fire
- 5.2. Uize.Widget.Form.get
- 5.3. Uize.Widget.Form.getBlankImageUrl
- 5.4. Uize.Widget.Form.registerProperties
- 5.5. Uize.Widget.Form.set
- 5.6. Uize.Widget.Form.singleton
- 5.7. Uize.Widget.Form.spawn
- 5.8. Uize.Widget.Form.subclass
- 5.9. Uize.Widget.Form.toggle
- 5.10. Uize.Widget.Form.unwire
- 5.11. Uize.Widget.Form.wire
- 6. Static Properties
1. Introduction
The Uize.Widget.Form
widget provides functionality for managing form elements and handling validation
DEVELOPERS: Ben Ilegbodu
1.1. Examples
There are no dedicated showcase example pages for the Uize.Widget.Form
module.
SEARCH FOR EXAMPLES
Use the link below to search for example pages on the UIZE Web site that reference the Uize.Widget.Form
module...
1.2. Implementation Info
The Uize.Widget.Form
module defines the Uize.Widget.Form
class, which is a subclass of Uize.Widget
.
INHERITANCE CHAIN
Uize.Class
-> Uize.Widget
-> Uize.Widget.Form
1.2.1. Features Introduced in This Module
The features listed in this section have been introduced in this module.
INSTANCE METHODS
addForm
| addFormElement
| checkIsEmpty
| checkWarningShown
| clear
| getFormElement
| reset
| submit
| validate
STATE PROPERTIES
action
| enctype
| isDirty
| isDirtyInherited
| isEmpty
| isFinished
| isSubmitting
| isValid
| method
| okToSubmit
| target
| useNormalSubmit
| validateWhen
| value
| warningAllowed
| warningAllowedInherited
| warningShown
| warningShownWhen
1.2.2. Features Overridden in This Module
The features listed in this section have been overridden in this module.
The module that an overridden feature was initially introduced in will be noted in the IMPLEMENTATION INFO notes for the feature.
INSTANCE METHODS
STATIC PROPERTIES
Uize.Widget.Form.moduleName
| Uize.Widget.Form.nonInheritableStatics
1.2.3. Features Inherited From Other Modules
The features listed in this section have been inherited from other modules.
The module that an inherited feature was initially introduced in will be noted in the IMPLEMENTATION INFO notes for the feature.
INSTANCE METHODS
addChild
| ajax
| buildHtml
| callInherited
| confirm
| displayNode
| fire
| flushNodeCache
| get
| getInherited
| getNode
| getNodeStyle
| getNodeValue
| getProvider
| globalizeNode
| inform
| injectNodeHtml
| insertOrWireUi
| insertUi
| is
| kill
| localize
| met
| once
| removeChild
| removeNode
| removeUi
| set
| setInherited
| setNodeClipRect
| setNodeInnerHtml
| setNodeOpacity
| setNodeProperties
| setNodeStyle
| setNodeValue
| showNode
| toggle
| unmet
| unwire
| unwireNode
| unwireNodeEventsByMatch
| unwireUi
| wire
| wireNode
INSTANCE PROPERTIES
STATE PROPERTIES
built
| busy
| busyInherited
| children
| container
| enabled
| enabledInherited
| html
| idPrefix
| idPrefixConstruction
| insertionMode
| localized
| name
| nodeMap
| wired
STATIC METHODS
Uize.Widget.Form.fire
| Uize.Widget.Form.get
| Uize.Widget.Form.getBlankImageUrl
| Uize.Widget.Form.registerProperties
| Uize.Widget.Form.set
| Uize.Widget.Form.singleton
| Uize.Widget.Form.spawn
| Uize.Widget.Form.subclass
| Uize.Widget.Form.toggle
| Uize.Widget.Form.unwire
| Uize.Widget.Form.wire
STATIC PROPERTIES
1.2.4. Modules Directly Under This Namespace
There are no modules directly under this namespace.
1.2.5. Unit Tests
There is no dedicated unit tests module for the Uize.Widget.Form
module.
2. Instance Methods
2.1. addChild
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.2. addForm
IMPLEMENTATION INFO
this feature was introduced in this module |
2.3. addFormElement
IMPLEMENTATION INFO
this feature was introduced in this module |
2.4. ajax
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.5. buildHtml
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.6. callInherited
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.7. checkIsEmpty
IMPLEMENTATION INFO
this feature was introduced in this module |
2.8. checkWarningShown
IMPLEMENTATION INFO
this feature was introduced in this module |
2.9. clear
IMPLEMENTATION INFO
this feature was introduced in this module |
2.10. confirm
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.11. displayNode
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.12. fire
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.13. flushNodeCache
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.14. get
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.15. getFormElement
IMPLEMENTATION INFO
this feature was introduced in this module |
2.16. getInherited
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.17. getNode
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.18. getNodeStyle
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.19. getNodeValue
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.20. getProvider
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.21. globalizeNode
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.22. inform
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.23. injectNodeHtml
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.24. insertOrWireUi
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.25. insertUi
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.26. is
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.27. kill
Inherited from Uize.Widget
, but introduced in Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Class ) |
2.28. localize
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.29. met
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.30. once
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.31. removeChild
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.32. removeNode
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.33. removeUi
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.34. reset
IMPLEMENTATION INFO
this feature was introduced in this module |
2.35. set
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.36. setInherited
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.37. setNodeClipRect
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.38. setNodeInnerHtml
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.39. setNodeOpacity
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.40. setNodeProperties
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.41. setNodeStyle
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.42. setNodeValue
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.43. showNode
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.44. submit
IMPLEMENTATION INFO
this feature was introduced in this module |
2.45. toggle
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.46. unmet
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.47. unwire
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.48. unwireNode
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.49. unwireNodeEventsByMatch
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.50. unwireUi
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.51. updateUi
IMPLEMENTATION INFO
this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Widget ) |
2.52. validate
IMPLEMENTATION INFO
this feature was introduced in this module |
2.53. wire
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) |
2.54. wireNode
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
2.55. wireUi
IMPLEMENTATION INFO
this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Widget ) |
3. Instance Properties
3.1. showConfirm
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
3.2. showInform
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4. State Properties
4.1. action
IMPLEMENTATION INFO
this feature was introduced in this module |
4.2. built
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.3. busy
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.4. busyInherited
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.5. children
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.6. container
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.7. enabled
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.8. enabledInherited
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.9. enctype
IMPLEMENTATION INFO
this feature was introduced in this module |
4.10. html
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.11. idPrefix
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.12. idPrefixConstruction
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.13. insertionMode
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.14. isDirty
IMPLEMENTATION INFO
this feature was introduced in this module |
4.15. isDirtyInherited
IMPLEMENTATION INFO
this feature was introduced in this module |
4.16. isEmpty
IMPLEMENTATION INFO
this feature was introduced in this module |
4.17. isFinished
IMPLEMENTATION INFO
this feature was introduced in this module |
4.18. isSubmitting
IMPLEMENTATION INFO
this feature was introduced in this module |
4.19. isValid
IMPLEMENTATION INFO
this feature was introduced in this module |
4.20. localized
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.21. method
IMPLEMENTATION INFO
this feature was introduced in this module |
4.22. name
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.23. nodeMap
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
4.24. okToSubmit
IMPLEMENTATION INFO
this feature was introduced in this module |
4.25. target
IMPLEMENTATION INFO
this feature was introduced in this module |
4.26. useNormalSubmit
IMPLEMENTATION INFO
this feature was introduced in this module |
4.27. validateWhen
IMPLEMENTATION INFO
this feature was introduced in this module |
4.28. value
IMPLEMENTATION INFO
this feature was introduced in this module |
4.29. warningAllowed
IMPLEMENTATION INFO
this feature was introduced in this module |
4.30. warningAllowedInherited
IMPLEMENTATION INFO
this feature was introduced in this module |
4.31. warningShown
IMPLEMENTATION INFO
this feature was introduced in this module |
4.32. warningShownWhen
IMPLEMENTATION INFO
this feature was introduced in this module |
4.33. wired
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) |
5. Static Methods
5.1. Uize.Widget.Form.fire
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
5.2. Uize.Widget.Form.get
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
5.3. Uize.Widget.Form.getBlankImageUrl
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) | |
this static feature is inherited by subclasses |
5.4. Uize.Widget.Form.registerProperties
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
5.5. Uize.Widget.Form.set
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
5.6. Uize.Widget.Form.singleton
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
5.7. Uize.Widget.Form.spawn
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) | |
this static feature is inherited by subclasses |
5.8. Uize.Widget.Form.subclass
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
5.9. Uize.Widget.Form.toggle
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
5.10. Uize.Widget.Form.unwire
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
5.11. Uize.Widget.Form.wire
Inherited from Uize.Class
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Class , first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
6. Static Properties
6.1. Uize.Widget.Form.isWired
Inherited from Uize.Widget
.
IMPLEMENTATION INFO
this is an inherited feature (implementation is in Uize.Widget , first introduced in Uize.Widget ) | |
this static feature is inherited by subclasses |
6.2. Uize.Widget.Form.moduleName
IMPLEMENTATION INFO
this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Class ) | |
this static feature is inherited by subclasses |
6.3. Uize.Widget.Form.nonInheritableStatics
IMPLEMENTATION INFO
this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Class ) | |
this static feature is not inherited by subclasses |