I'm try to upgrade my project using tapestry4 to tapestry5. And I'm looking for a component to use JSCookMenu in tapestry5.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Were you using JSCookMenu in Tapestry 4? What exactly do you need? If it's just the links that the menu options need to have to invoke code in your T5 pages, then you should inject a ComponentResources into your page so you can create the links you need and add them to a javascript fragment on the page. You can add the Javascript to create the menu variable and the invocation to cmDraw inside the setupRender() method of your page, using an injected RenderSupport instance, for example:
To include the JSCookMenu.js file in your page, add an annotation to your page class:
The JSCookMenu.js need to be added as an asset to your T5 application. |
||||
|
|