The <o:resolveComponent> component is a utility component via which a component can be looked up
by its ID and a reference to it put in either the "facelet scope" (default) or the request scope.
| Info | Value |
|---|---|
| Component Type | org.omnifaces.component.util.ResolveComponent |
| Handler Class | org.omnifaces.taghandler.ComponentExtraHandler |
| Renderer Type | None |
| Description | None |
| Name | Required | Type | Description |
|---|---|---|---|
binding | false | jakarta.el.ValueExpression
(must evaluate to jakarta.faces.component.UIComponent)
| The ValueExpression linking this component to a property in a backing bean. |
faceletContext | false | jakarta.el.ValueExpression
(must evaluate to jakarta.faces.view.facelets.FaceletContext)
| No Description |
for | true | jakarta.el.ValueExpression
(must evaluate to java.lang.String)
| ID of the component that will be resolved (looked-up) and if found a reference of it made available to EL. |
id | false | jakarta.el.ValueExpression
(must evaluate to java.lang.String)
| The component identifier for this component. This value must be unique within the closest parent component that is a naming container. |
name | true | jakarta.el.ValueExpression
(must evaluate to java.lang.String)
| Name under which the component will be made available to EL, scoped to the body of the Facelets tag (default) or to the request. |
rendered | false | jakarta.el.ValueExpression
(must evaluate to boolean)
| Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true. |
scope | false | jakarta.el.ValueExpression
(must evaluate to java.lang.String)
| Optional scope identifier used to set the scope in which the component reference is inserted. If no scope is specified,
the default scope "facelet" will be used.
Values values are "facelet" (default) and "request". |
Output generated by Vdldoc View Declaration Language Documentation Generator.