p:咆哮的定制定位

时间:2012-05-18 10:29:23

标签: css jsf primefaces growl

我正在使用PrimeFaces 3.2的<p:growl>组件来显示面部消息。我想自定义它的位置,使其显示在左侧而不是右侧。

我尝试了以下内容:

<h:head>
    <title>Facelet Title</title>
    <style type="text/css">
        .ui-growl {
            position:absolute;
            top:20px;
            left:20px;
            width:301px;
            z-index:9999;
        }
    </style>
</h:head>
<h:body>
    <h:form id="frm">
        <div id="add">
            <p:growl id="growl" showDetail="true" sticky="true" autoUpdate="true"/>
            <h:panelGrid columns="2" >
            ...

但它没有用。我哪里错了?

2 个答案:

答案 0 :(得分:4)

您的代码看起来很好。

我将它复制到我的测试用例中并且它可以工作:growl元素显示在左上角。为此,只需要left:20px;(感谢@BalusC进行评论)。

所以问题必定在其他地方。您是否在示例中省略了页面的其他样式定义?尝试通过删除所有不必要的东西来隔离问题。

这是我的测试用例:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html" 
      xmlns:f="http://java.sun.com/jsf/core" 
      xmlns:p="http://primefaces.org/ui">
    <h:head>
        <title>Facelet Title</title>
        <style type="text/css">
            .ui-growl{
                left:20px;
            }
        </style>
    </h:head>

    <h:body>
        <h:form id="myform">
            <div id="add">
                <p:growl showDetail="true" sticky="true" autoUpdate="true"/>
            </div>
        </h:form>
    </h:body>
</html>

答案 1 :(得分:2)

function growlLeft(){

                var css = document.createElement("style");
                css.id="growlStyle";
                css.type = "text/css";
                css.innerHTML = ".ui-growl { left: 20px!important}";
                document.body.appendChild(css);
            }
            function growlReset(){
                $('#growlStyle').empty();
            }

此代码将有助于进行dogically positiongrowl并重置其位置。样式类也解决了

这个问题
                 .ui-growl { left: 20px}