如何为 primefaces 1.1 设置皮肤

发布于 2024-10-22 17:02:01 字数 38 浏览 1 评论 0原文

你能解释一下如何为 primefaces 1.1 设置皮肤吗?

could you please explain how to set the skin for primefaces 1.1 ..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏日落 2024-10-29 17:02:01

您可以尝试添加

<h:head>
   <link type="text/css" rel="stylesheet"
            href="#{request.contextPath}/themes/redmond/skin.css" />
</h:head>

到您的页面和

<context-param>
    <param-name>primefaces.skin</param-name>
    <param-value>none</param-value>
</context-param>

web.xml

you can try to add

<h:head>
   <link type="text/css" rel="stylesheet"
            href="#{request.contextPath}/themes/redmond/skin.css" />
</h:head>

to your page and

<context-param>
    <param-name>primefaces.skin</param-name>
    <param-value>none</param-value>
</context-param>

to web.xml

浮萍、无处依 2024-10-29 17:02:01

来自 http://www.primefaces.org/themes.html

安装主题

将主题库中的主题应用到
你的 PrimeFaces 项目非常简单,
你只需要下载主题
jar,将其添加到您的类路径中并
配置 PrimeFaces 来使用它。

1) 您可以下载主题
从此页面手动或使用 Maven
通过;

<依赖>;
  org.primefaces.themes;
  aristo
  <版本>1.0.0

2) 下一步是设置
primefaces.THEME 参数与
主题名称,也可以使用 EL
动态主题的表达。看法
纯文本复制到剪贴板打印?

<上下文参数>
              <参数名称>primefaces.THEME
              <参数值>aristo
          

就是这样!

我目前面临这样的问题,但还没有真正的解决方案......

From http://www.primefaces.org/themes.html:

Installing Themes

Applying a theme from Theme Gallery to
your PrimeFaces project is very easy,
you just need to download the theme
jar, add it your classpath and
configure PrimeFaces to use it.

1) You can either download the theme
manually from this page or using maven
via;

<dependency>
  <groupId>org.primefaces.themes</groupId>
  <artifactId>aristo</artifactId>
  <version>1.0.0</version>
</dependency>

2) Next step is setting
primefaces.THEME parameter with the
theme name, you can also use an EL
expression for dynamic themes. view
plaincopy to clipboardprint?

<context-param>
              <param-name>primefaces.THEME</param-name>
              <param-value>aristo</param-value>
          </context-param>

That's it!

I'm currently facing a problem like this, bhut have no real solution for that yet...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文