portal
Tag captcha
-
- Description:
-
Captcha is a UIInput that renders Liferay Portal's captcha image and a field for editing single-line text. It provides built-in validation in order to make sure that the text value entered by the user matches the value in the captcha image.
-
- Since:
- 3.2.5-ga6
Info | Value |
---|---|
Component Type | com.liferay.faces.portal.component.captcha.Captcha |
Handler Class | None |
Renderer Type | com.liferay.faces.portal.component.captcha.CaptchaRenderer |
Description | None |
Name | Required | Type | Description |
---|---|---|---|
binding | false | javax.el.ValueExpression
(must evaluate to javax.faces.component.UIComponent )
| An EL expression that binds the Java reference to this component in the component tree to a bean property. |
converter | false | javax.el.ValueExpression
(must evaluate to javax.faces.convert.Converter )
| The class name of the converter instance that is to be used by this component. |
converterMessage | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| This message or the result of the specified expression, will be used as the text of the converter message instead of any message that comes from the registered converter for this component. |
id | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| A unique identifier for this component. |
immediate | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean )
| When this flag is true, this component's value must be converted and validated (immediately) during the Apply Request Values phase, instead of (later) during the PROCESS_VALIDATIONS phase. |
label | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| A localized label for this component that is typically only rendered in a FacesMessage when validation fails. |
rendered | false | javax.el.ValueExpression
(must evaluate to boolean )
| When this flag is true, this component will be rendered to there response. When false, it will not be rendered to the response. The default value of this attribute is true. |
required | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean )
| When this flag is true, and a value has not been specified for this component, then the PROCESS_VALIDATIONS phase will fail and a FacesMessage will be added to the FacesContext for this component. |
requiredMessage | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| This message or the result of the specified expression, will be used as the text of the validation error message instead of any message that comes from the resulting validation error for this component when required="true" and no value is selected by the user. |
style | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| HTML passthrough attribute specifying the css style of the element. |
styleClass | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| List of CSS class names (separated by spaces) that are to be rendered within the class attribute. |
url | false | javax.el.ValueExpression
(must evaluate to String )
| Specifies a custom captcha image URL. If the value is empty (default), then the image will be obtained from Liferay Portal's built-in captcha feature. |
validator | false | javax.el.MethodExpression
(signature must match void validate(javax.faces.context.FacesContext, javax.faces.component.UIComponent,
java.lang.Object) )
| A method that is executed in the PROCESS_VALIDATIONS phase of the lifecycle. The method must be public , return void , and take three arguments of FacesContext , UIComponent , and Object . |
validatorMessage | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| This message or the result of the specified expression, will be used as the text of the validation error message instead of any message that comes from the resulting validation error for this component. |
value | false | javax.el.ValueExpression
(must evaluate to java.lang.Object )
| The value of this component, which is typically bound via EL to a model bean property. |
valueChangeListener | false | javax.el.MethodExpression
(signature must match void valueChange(javax.faces.event.ValueChangeEvent) )
| A method that is executed when the value of this component changes. The method must be public , return void , and take no arguments or one argument of ValueChangeEvent . |