
|
If you were logged in you would be able to see more operations.
|
|
|
|
This issue was reported by Torsten Krah.
The Clay full HTML or XML templates assume a view root. The UIViewRoot is created by the view handler. In all other cases, the components are created for the meta-data definitions. There is not a way through the markup template to represent the properties of the view root. We need to provide a way to set the view roots properties from a template.
|
|
Description
|
This issue was reported by Torsten Krah.
The Clay full HTML or XML templates assume a view root. The UIViewRoot is created by the view handler. In all other cases, the components are created for the meta-data definitions. There is not a way through the markup template to represent the properties of the view root. We need to provide a way to set the view roots properties from a template. |
Show » |
|
There are several ways to apply an alternate renderKit or locale to a view.
Examples:
<html>
<span id="view" jsfid="f:view" locale="ja_JP" renderKitId="MY_KIT1">
<input type="text" id="input1">
<input type="text" id="input2">
</span>
</html>
<html xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html">
<f:view locale="pt_PT" renderKitId="MY_KIT2">
<h:inputText id="input1"/>
<h:inputText id="input2"/>
</f:view>
</html>
<html xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html">
<f:view locale="de" renderKitId="MY_KIT3"/>
<h:inputText id="input1"/>
<h:inputText id="input2"/>
</html>