PrimeFaces RowEditor - 没有显示图标

时间:2013-05-02 16:54:10

标签: css jsf primefaces icons

我在使用PrimeFaces的p:rowEditor时遇到了麻烦。 问题是,没有显示要点击的图标。

我没有修改样式类并使用默认图标。 在FF,Chrome和IE9中一切正常。

不幸的是,我的项目应该在IE8上运行......但是那里的图标不可见。 由于这是我们在工作场所使用的默认浏览器,因此无法切换到其他浏览器。

为了使rowEditor至少可点击,你们是否知道任何解决方法或修复方法?说“编辑”的文字很好,而不是图标。

提前致谢!

1 个答案:

答案 0 :(得分:0)

我的建议是“设置X-UA-Compatible标题(Primefaces版本> = 3.0,如果您只需将meta标记添加到h:head的较低版本”):

<h:head>
  <f:facet name="first"> // remove this tag if primefaces's version is lower than 3.0
      <meta http-equiv="X-UA-Compatible" content="EmulateIE8" />
  </f:facet>
  // other contents
</h:head>

了解详情: Specifying legacy document modes