AddToValidationFunction (inherited from ComponentMgr) | For all registered components, for every Validator associated with that component call AFormDP.AddToValidationFunction for the validator. This inserts the JavaScript Validation function name from the Validator to the page's JavaScript Validate method. |
Equals (inherited from Object) | Determines whether the specified Object is equal to the current Object. |
GetAllHeadContent (inherited from ComponentMgr) | This method returns ALL HTML--page scope and component scope for all components under this manger--that belongs between the HTML head tags. |
GetAllPostContent (inherited from ComponentMgr) | This method returns ALL HTML--page scope and component scope for all components under this manger--that should be printed after the component itself. |
GetAllPreContent (inherited from ComponentMgr) | This method returns ALL HTML--page scope and component scope for all components under this manger--that should be printed before the component itself. |
GetAllPreFormContent (inherited from ComponentMgr) | This method returns ALL HTML--page scope and component scope for all components under this manger--that should be printed before the form in which this group of components is embedded. |
GetComponent (inherited from ComponentMgr) | Overloaded. This method returns an AComponent object given its unique instance ID. Null is returned if the component is not found. |
GetComponentHeadContent (inherited from ComponentMgr) | Overloaded. Returns the HTML for the designated component that is should be written out within the HTML head tags. |
GetComponentHTML (inherited from ComponentMgr) | Overloaded. Returns the HTML for the designated component. |
GetComponentPostContent (inherited from ComponentMgr) | Overloaded. Returns the HTML for the designated component that should be written out after the component itself. |
GetComponentPreContent (inherited from ComponentMgr) | Overloaded. Returns the HTML for the designated component that should be written out before the component itself. |
GetComponentPreFormContent (inherited from ComponentMgr) | Overloaded. Returns the HTML for the designated component that should be written out before the form in which the component is embedded. |
GetHashCode (inherited from Object) | Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table. |
GetJSValidationCode (inherited from ComponentMgr) | Return JavaScript validation code for each of the validators associated with all components. This function returns the validation code once for each validator. Although the validator may be used several times it is assumed that the JavaScript code is only required one time. |
GetNumComponents (inherited from ComponentMgr) | Returns the number of components registered with this component manger. |
GetPageHeadContent (inherited from ComponentMgr) | This method is meant to return the page-level head content for components of this type. This method just returns null. It could have been abstract, but many components do need to use it. If you need this, you should override it. |
GetPageMgr (inherited from ComponentMgr) | Returns the page manger that is associated with this component manager. |
GetPagePostContent (inherited from ComponentMgr) | This method is meant to return the page-level "post" content for components of this type. This method just returns null. It could have been abstract, but many components do need to use it. If you need this, you should override it. |
GetPagePreContent (inherited from ComponentMgr) | This method is meant to return the page-level head "pre" for components of this type. This method just returns null. It could have been abstract, but many components do need to use it. If you need this, you should override it. |
GetPagePreFormContent (inherited from ComponentMgr) | This method is meant to return the page-level head content for components of this type. This method just returns null. It could have been abstract, but many components do need to use it. If you need this, you should override it. |
GetType (inherited from Object) | Gets the Type of the current instance. |
RegisterComponent (inherited from ComponentMgr) | This method allows you to register a component with the component manager. The order in which you register components is the order in which calls will be made when doing any looping operation--storing or printing. If you attempt to re-register the same component, it will overwrite the one that existed there before. |
StoreAllUserInput (inherited from ComponentMgr) | Stores the user input for all componets registered with this component manager. |
StoreUserInput (inherited from ComponentMgr) | Overloaded. This method stores the user input for a particular component given its unique ID. |
ToString (inherited from Object) | Returns a String that represents the current Object. |
UnRegisterComponent (inherited from ComponentMgr) | This method unregisters a component given its unique instance ID. |
Validate (inherited from ComponentMgr) | Call the validation method on all registered componenets. Returns an XPArrayList of all UIErrors generated by the componenets. |