HTML to NetUI Tag Mapping
HTML to NetUI Tag Mapping
The following table maps HTML elements to NetUI Tags. Most of NetUI tags produce HTML elements directly, which is summerized below. There is a brief description and links to more details in the tag user documentation.
Html Tag | NetUI Tag | Description | Links |
---|---|---|---|
<a> | netui:anchor | Create an anchor | Simple Linking, Form Controls |
<a><img></a> | netui:imageAnchor | A composite set of HTML elements with an anchor surrounding an image | |
<area> | netui:area | Specify a geometric region of an image map and the link associated with it | |
<base> | netui:base | Specify the absolute URI for resolving relative URIs | |
<body> | netui:body | Create the body containing the document content | HTML/XHTML |
<form> | netui:form | A form containing a set of controls that can be posted to the server | Form Controls |
<html> | netui:html | The containing HTML tag | XHTML/HTML |
<input type=checkbox> | netui:checkBox | Form Control allowing a binary value | Form Controls |
<input type=checkbox> | netui:checkBoxGroup | A group of checkboxes | Form Controls, Repeating |
<input type=file> | netui:fileUpload | Form Control allowing a file to be uploaded | Form Controls |
<input type=hidden> | netui:hidden | Form Control that posts a value back | Form Controls |
<input type=image> | netui:imageButton | Form Control that creates a graphical button | Form Controls |
<input type=radio> | netui:radioButtonGroup | Form Control creating a single selection radio button group | Form Controls, Repeating |
<input type={submit, button, reset}> | netui:button | Create a button, supports submit, button and reset | Form Controls |
<input type={text, password} | netui:textBox | Form Control creating either a text or password field | Form Controls |
<img> | netui:image | Embed an image into a document | |
<label> | netui:label | Create a label to attach information to a Form Control | |
<option> | netui:selectOption | Create an item inside of a select control | Form Controls |
<script> | netui:scriptBlock | Create a client side JavaScript block | JavaScript, XHTML/HTML |
<select> | netui:select | Form Control that creates a single or multiple selection | Form Controls, Repeating |
<span> | netui:span | Create an inline span element | |
<textArea> | netui:textArea | Form Control creating a multiple line text input field | Form Controls |