CodeCharge Studio |
All ASP PHP Perl ColdFusion Java C#.NET VB.NET |
| Property | Description |
|---|---|
| Name | The name of the control. |
| Visible | Specify whether the control should be displayed or not. |
| Caption | The name used to refer to the control in an error message. |
| Control Source Type | The type of data source that will provide data for the control: Database Column, Code Expression. |
| Control Source | Specify the source of data for the control e.g. the name of a database column. |
| Data Type | The type of data that will be contained in the control. |
| Format | Depending on the Data Type property, select the format of the data that will be contained in the control. |
| Default Value | Specify a default value to be used for the control if no value is otherwise specified. |
| Required | [Yes/No] Select ‘Yes’ if a value must be entered for the control in order for the form to be submitted successfully. |
| Unique | [Yes/No] Select ‘Yes’ if you want a check to be made to ensure that any value entered in the control does not already exist in the database. |
| Input Validation | Select a regular expression to be used to check the validity of the data entered in the control. |
| Error Control | Specify the name of a control that will be used to display any error messages pertaining to this control. |
| Validation Rule | Specify an expression that will be used to check the validity of the data entered in the control. |
| Validation Text | Specify the text that will be displayed if the data entered in the control does not meet the validation rule. |
| DBFormat | Specify the format in which you want the control value to be entered into the database. |
| Event | Description |
|---|---|
| Server Side Events | |
| On Validate | This event occurs after standard validation operations have been performed as a result of submitting values, but before any database operations have been performed with the submitted values. |
| Before Show | Occurs before the control is rendered to the page. |
| Client Side Events | |
| On Load | Occurs at the beginning of page processing and is used for binding Validation rules to the control. |
| Property | Description |
|---|---|
| Errors | An object that contains the error messages generated during script execution when submitted data fails verification or any other user defined condition is not fulfilled. |
| Value | Holds the value of the control. |
| Property | Description |
|---|---|
| ComponentType | Specifies type of an object, such as "TextBox", "Record", etc. |
| Parent | Specifies parent container of an object, for example a record form for a textbox that is included within that form. |
| Errors | An object that contains the error messages generated during script execution when submitted data fails verification or any other user defined condition is not fulfilled. |
| Property | Description |
|---|---|
| Visible | Indicates whether the control is rendered on the page or not. |
| Value | Gets or sets the value of the hidden control. See .NET Framework SDK reference. |
| Property | Description |
|---|---|
| <control name> | Contains the current value of the control. |
| Method | Description |
|---|---|
| GetValue | Retrieves the value of the Hidden control. |
| SetValue | Sets the value for the Hidden control. |
| Variable | Description |
|---|---|
| fld<control name> | Holds the value of the control. |
| Method | Description |
|---|---|
| getPage | Get the page that contains this control. |
| getFormattedValue | Get the value formatted according to the control format. |
| setFormattedValue | Use a String to set the control value. The value is taken as is i.e. formatting will not be applied to this value. |
| getValue | Retrieves the value of the control without any formatting applied to it. |
| setValue | This method sets the value of the control. |
| hasErrors | Indicates whether the control has (validation) errors. |
| addError | Add an error description to the errors collection. |
| getErrorsAsString | Return a single String with all the error messages separated by <br> tags. |
| isVisible | Indicates whether this control should be shown or not. |
| setVisible | Specify whether this control or component should be shown or not. |
| getParent | Get the parent component that contains this control or component. |