I want to use plain HTML 5 in my JSF page as some UI functionality cannot be achieved by HTML support provided by JSF2.
In JSF 2.0, some attributes of HTML 5 form elements cannot be rendered correctly in the standard JSF input components.
For eg,<input type="email"
cannot be rendered by <h:inputText type="email"
.
In the below given link, they have used some pure HTML 5 tags like <canvas> <header> <footer> <small>
etc.
Now my questions are:
When I try to use the pure html input tag with type "text" in my JSF page, I cant able to retrieve the value from my Managed Bean and set it to this text box. why the value is not displayed?
Only some plain HTML 5 tags will be supported in xhtml page or all the plain HTML 5 tags will be supported