Ui text box | ||
---|---|---|
| ||
This composite component is used to display a delete button on the page. It is accessed through the <crm:deleteButton> tag and is defined in the xmlns namespace with the declaration xmlns:em="http://java.sun.com/jsf/composite/crm". |
...
Name | Required | Type | Default | Description |
---|---|---|---|---|
dataObject | false | Object | The data object of the managed bean. | The data object of the component . |
disabled | false | Boolean | false | Flag indicating that component is disabled or not. |
icon | false | String | fa fa-trash | Icon of the button as a css class. |
managedBean | false | String | null | The name of the managed bean that will be used for retrieving the component values. |
pageToRedirect | false | String | null | The page to redirect when button is clicked. |
styleClass | false | String | btn btn-primary | Style class of the component. |
visible | false | Boolean | true | Controls the visibility of the component. |
Examples
The following example illustrates how ...