The supported web controls are listed in the following table. Web controls that have specific related APIs are presented individually below the table.
For details about table controls, refer to Web Table Controls.
Web Control |
HTML Tags |
Behaviors |
Notes |
---|---|---|---|
WebCustom |
TagName |
|
This generic control can be used for any unmatching HTML tags. It has capabilities of the basic WebControl only. |
WebButton |
•button •input type=button •input type=submit •input type=reset •input type=image |
Disableable |
|
WebTextBox |
•textarea •input type=text •input type=password •input type=email •input type=url •input type=tel •input type=search |
•Disableable •Changeable |
|
WebObject |
object |
|
|
WebCheckBox |
input type=checkbox |
•Disableable •Changeable •Checkable |
|
WebRadioButton |
input type=radio |
•Disableable •Checkable |
|
WebSpanControl |
span |
|
This control can have child controls in the Repository. |
WebDivControl |
div |
|
This control can have child controls in the Repository. |
WebFrame |
•iframe •frame |
|
This control can have child controls in the Repository. |
HTML Tags
•a
Members
Member Name |
Type |
Description |
---|---|---|
href |
String |
The URL for the link. |
HTML Tags
•select
Behaviors
•disableable
•changeable
Members
Member Name |
Type |
Description |
---|---|---|
SelectedIndex |
Int |
The index selected in the list. |
SelectedItem |
String |
The selected value (by text) of the select list. |
Options |
WebControlsCollection<WebOptionControl> |
List of the options available for this select. |
HTML Tags
•option
Members
Member Name |
Type |
Description |
---|---|---|
Selected |
Boolean |
Indicates whether the option is selected. |
Value |
String |
Value of the option. This member is read-only. |
HTML Tags
•img
Members
Member Name |
Type |
Description |
---|---|---|
Src |
String |
The source of the image. |
HTML Tags
•frame
•iframe
Members
Member Name |
Type |
Description |
---|---|---|
Src |
String |
The source of the frame. |
This web control can have child controls in the Repository.
HTML Tags
•form
Members
Member Name |
Type |
Description |
---|---|---|
FormData |
Dictionary<string, string> |
Returns a key-value dictionary of the form fields. |
Methods
Method Name |
Description |
Parameters |
---|---|---|
Submit |
Submits a web form. |
|
Events
Event Name |
Arguments |
Description |
---|---|---|
Submitted |
|
Fires when the form is submitted. The data property will contain a key-value dictionary of the form fields. |