| Name | Class name | Description | Tag name |
|---|---|---|---|
| button | UIButton | <rialto:button> | |
| checkbox | UICheckBox | <rialto:checkox> | |
| combo | UICombo | <rialto:combo> | |
| divSplit | UIDivSplit | ||
| form | UIForm | <rialto:form> | |
| grid | UIData | <rialto:grid> | |
| label | UILabel | <rialto:label> | |
| panel | UIPanel | <rialto:panel> | |
| password | UIPassword | <rialto:password> | |
| popup | UIPopup | <rialto:popup> | |
| splitter | UISplitter | ||
| tab | UITab | <rialto:tab> | |
| tabs | UITabs | <rialto:tabs> | |
| text | UIText | <rialto:text> | |
| treeNode | UITreeNode | <rialto:treeNode> | |
| treeView | UITreeview | <rialto:treeview> | |
| window | UIWindow | <rialto:window> |
Nearly all tags have top, left, width and height attributes. The displayed attribute should be used instead of the rendered one.
Define a Rialto view
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the view | false |
This tags creates a Rialto window.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the window | false |
| title | Title of the window | false |
| icon | Icon of the window | false |
This tag creates a Rialto frame.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the panel | false |
| displayed | Should the panel be displayed or hidden | false |
| title | Title of the panel | false |
| top | Top position of the panel in pixel | true |
| left | Left position of the panel in pixel | true |
| width | Width of the panel | true |
| height | Height of the panel | true |
| position | Positioning of the panel. Can be relative or absolute | true |
| dynamic | Can the user can dynamically open or close the panel | false |
| open | Is the panel initially close or open | false |
Define a Rialto popup.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the popup | false |
| top | Top position in pixel | true |
| left | left position in pixel | true |
| width | Width of the popup in pixel | true |
| height | Height of the popup in pixel | true |
| title | Title of the popup | false |
| binding | JSF object binding attribute | false |
Insert an HTML form into the page. Components like links, buttons and input fields must bes nested into a form.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the form | false |
Create a Rialto button. This tag must be nested into a form tag.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the button | false |
| displayed | Should the button be displayed or hidden | false |
| top | Top position in pixel | true |
| left | Left position in pixel | true |
| title | Title of the button | true |
| immediate | JSF immediate attribute | false |
| action | JSF action attribute | false |
| onclick | Javascript onclick handler | false |
Display the JSF information and error messages in a Rialto popup.
This tag creates a Rialto label.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the label | false |
| top | Top position in pixel | true |
| left | Left position in pixel | true |
| styleClass | CSS class name | false |
| value | Label value | true |
Create an HTML text input box.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the text box | false |
| top | Top position in pixel | true |
| left | Left position in pixel | true |
| width | Width of the box | true |
| value | JSF value binding attribute | false |
| binding | JSF object binding attribute | false |
| required | Require a non empty value | false |
| disabled | Disable the HTML input field | false |
Create an HTML password input box.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the password box | false |
| top | Top position in pixel | true |
| left | Left position in pixel | true |
| width | Width of the password input box | true |
| value | JSF value binding attribute | false |
| binding | JSF object binding attribute | false |
| required | Require a non empty value | false |
Create an HTML input checkbox.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the checkbox | false |
| top | Top position in pixel | true |
| left | Left position in pixel | true |
| label | Label of the chekbox | true |
| value | JSF balue binding attribute | false |
| styleClass | CSS class name | false |
Creates an HTML combo box.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the combo | false |
| top | Top position in pixel | true |
| left | Left position in pixel | true |
| width | Width of the combo box | true |
| value | JSF value binding attribute | false |
| required | Require a non empty value | false |
| disabled | Disable the HTML select box | false |
Add an element to the parent combo box.
| Attribute | Description | Required |
|---|---|---|
| id | JSF id of the item | false |
| value | Value of the item | false |
| label | Label of the item | false |