1

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

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

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

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

提前致谢!

4

1 回答 1

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>

阅读更多: 指定旧文档模式

于 2013-05-02T17:08:53.183 回答