Issue Details (XML | Word | Printable)

Key: SHALE-364
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Minor Minor
Assignee: Gary VanMatre
Reporter: Steve Olson
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Shale

Tomahawk 1.1.3 component jscookmenu does not render

Created: 18/Dec/06 01:24 AM   Updated: 23/Jan/07 04:40 PM
Component/s: Clay
Affects Version/s: 1.0.3
Fix Version/s: 1.0.4


 Description  « Hide
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.

 All   Comments   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
Gary VanMatre added a comment - 18/Dec/06 04:34 AM
There was a couple issue preventing the jscookmenu component from working in full clay views.

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.