WebSphere Portal 6.1 PortalWeb2 主题门户导航:urlGeneration 不在 IE 中显示 portlet
我正在尝试为我的项目创建一个新的自定义主题。我复制了 IE 的 PortalWeb2 主题并扩展了 sideNav.jspf
以包含 jquery 手风琴菜单。
每个菜单都链接到一个包含一些 portlet 的页面。
<ul id="accordion_menu">
<li>
<portal-navigation:urlGeneration contentNode="com.ccportal.home" >
<a href="<%wpsURL.write( out );%>" >Home</a>
</portal-navigation:urlGeneration>
</li>
</ul>
此代码在 Mozilla 中显示 portlet,但在 IE 7 中不显示任何 portlet。它会给出一些 JavaScript 错误。你能帮忙吗?
I am trying to create a new custom theme for my project. I copied PortalWeb2 theme of IE and extended sideNav.jspf
to include a jquery accordion menu.
Each menu links up to a page having some portlets
<ul id="accordion_menu">
<li>
<portal-navigation:urlGeneration contentNode="com.ccportal.home" >
<a href="<%wpsURL.write( out );%>" >Home</a>
</portal-navigation:urlGeneration>
</li>
</ul>
This code displays portlets in Mozilla but doesn't display any portlets in IE 7. It gives some JavaScript error. Could you please help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 CSA 主题,则不会使用 sideNav.jspf(默认情况下)来渲染侧导航。有某些 Firefox 版本不支持 CSA ,因此在这些浏览器中使用 SSA 主题。所以在您的情况下,看起来 CSA 主题不起作用,但 SSA 主题工作正常。
Yoy 可以切换到
ibmCSA.js
文件的未压缩版本,看看具体的错误是什么。If you arw using the CSA theme, sideNav.jspf will not be used( by default) to render side nav. There are certain Firefox versions which do not support CSA , so in those browsers SSA theme is used.So in your case looks like CSA theme is not working but SSA theme is working fine.
Yoy can switch to the uncompressed version of
ibmCSA.js
file and see what the exact error is.