Thursday, December 24, 2015

Primefaces: Theme 主題

以前一直都是用JSF加上Primefaces框架來開發網頁,最近看到原來可以改主題,但是嘗試了一段時間就是用不了它的其他主題。

變更流程總結起來還是蠻簡單的︰

  1. 首先可以到這裏選一個喜歡的主題,記下它的名字
  2. 然後到這裏下載它的jar檔案(點名字再選版本就看到了)
  3. 接著把jar放到build path中
  4. 打開WebContent->WEB-INF->web.xml,加入以下設定就可以了
  <context-param>
    <param-name>primefaces.THEME</param-name>
    <param-value>主題名字(如︰cupertino)</param-value>
  </context-param>
Reference:  Primefaces Themes Example and Custom Themes Tutorial

No comments: