
|
If you were logged in you would be able to see more operations.
|
|
|
|
t:jscookmenu and related t:navigationMenuItem components render to a default rendererType that results in a SubmitQuery button being rendered when using Clay. Also the Myfaces ExtensionsFilter does not include the appropriate javascript and related resources from the Tomahawk 1.1.3 jar for jscookmenu, as it should.
From Gary VanMatre's reearch into this:
1 )The rendererType of the jscookMenu must be set to "org.apache.myfaces.JSCookMenu". This can be worked around by inheriting a new component and setting the missing attribute:
<component jsfid="t:myJscookMenu" extends="t:jscookMenu">
<attributes>
<set name="rendererType" value="org.apache.myfaces.JSCookMenu" />
</attributes>
</component>
2) The ClayViewHander is not explicitly setting the response's content type, and ExtensionsFilter requires this to work.
|
|
Description
|
t:jscookmenu and related t:navigationMenuItem components render to a default rendererType that results in a SubmitQuery button being rendered when using Clay. Also the Myfaces ExtensionsFilter does not include the appropriate javascript and related resources from the Tomahawk 1.1.3 jar for jscookmenu, as it should.
From Gary VanMatre's reearch into this:
1 )The rendererType of the jscookMenu must be set to "org.apache.myfaces.JSCookMenu". This can be worked around by inheriting a new component and setting the missing attribute:
<component jsfid="t:myJscookMenu" extends="t:jscookMenu">
<attributes>
<set name="rendererType" value="org.apache.myfaces.JSCookMenu" />
</attributes>
</component>
2) The ClayViewHander is not explicitly setting the response's content type, and ExtensionsFilter requires this to work. |
Show » |
|
1) The jscookMenu component was missing a Clay xml configuration attribute that overrides the rendererType. The default was a command button renderer.
2) The ClayViewHandler was not explicitly setting the contentType of the response. The missing response content type was preventing the myfaces filter extension from adding javascript for the jscookMenu component.
Thanks for the help Steve. Please reopen this issue if you have other problems with the tomahawk jscookmenu component used with clay templates.