This section describes the inputHidden JSF tag. This tag is used to create the field that is invisible to the user. This is the field that is used to pass the variables from one page to another. It renders the html input element with the type attribute set to "hidden".
Code Description :
| <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <f:view> <html> <body> <h:form><br> <h:inputHidden id="ih" value="hv"></h:inputHidden> </h:form> </body> </html> </f:view> |
Rendered Output :
There is no rendered output for this tag . This gives invisible element as an output.
Html Scorce Code :
|
<html> |
There is a list of all attributes that can be used in this inputHidden tag:
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: JSF inputHidden Tag View All Comments
Post your Comment