我正在使用没有tomahawk和其他库的JSF Myfaces Impl 1.2:
我使用不同的样式+图像来显示JSF错误消息,在下面找到样本。
<h:panelGroup rendered="${adminBean.showErrorIcon==2}">
<table width="375" align="center" class="InfoMsg" border="1"
cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="375" align="center" class="InfoMsg" border="0">
<tr>
<td width="50"><img src="static/images/info_icon.gif"
width="40" height="40" border="0" /></td>
<td width="325" align="left"><h:messages layout="table"
errorClass="InfoMsg" /></td>
</tr>
</table>
</td>
</tr>
</table>
基于Backing Bean的int变量,我在屏幕上显示差异图像和相应的FacesMessage - 只有2个案例 - 错误或信息。
我使用以下代码设置Backing Bean的变量
//Checking if there are messages!
log.debug("Checking if there are messages to be shown ]");
if(getShowErrorIcon()==99){//Set only if the value is still the default :
log.debug("getShowErrorIcon was DEFAULT - Changing it ]");
Iterator<FacesMessage> messages = FacesContext.getCurrentInstance().getMessages();
if(messages != null && getShowErrorIcon()==99){//Set Error/Info for messages that are not added here :
while(messages.hasNext()){
log.debug("There are ***messages***");
FacesMessage aMessage =(FacesMessage) messages.next();
if(aMessage.getSeverity().compareTo(FacesMessage.SEVERITY_ERROR)==0){
setShowErrorIcon(1);
break;//just once is enough
}
if(aMessage.getSeverity().compareTo(FacesMessage.SEVERITY_INFO)==0){
setShowErrorIcon(2);
break;
}
}
}
}//if it is not default, then something has been set already, why again?
现在我遇到的问题是,MyFacesImpl添加了FacesMessage - 比如required = true和在PROCESS_VALIDATION阶段添加的自定义验证器消息,因为我的整数在屏幕上没有显示没有设置Backing Bean的变量,因为没有调用INVOKE_APPLICATION阶段(这意味着上面的代码没有被调用!!!)
我该如何解决这个问题?或者什么是最好的方式/哪里是放置上述检查代码的最佳位置?
感谢您的帮助。谢谢!
答案 0 :(得分:11)
我不确定,但这一切看起来都不必要地过于复杂。要根据消息严重性更改图标/样式,只需使用CSS权限即可。您可以使用infoClass
的{{1}}和errorClass
属性根据邮件严重性指定不同的CSS类,并可以将图标指定为CSS背景图片。
JSF:
<h:messages>
CSS:
<h:messages id="messages" layout="table" infoClass="info" errorClass="error" />
#messages .info td {
background: url('info.gif') no-repeat left center;
padding-left: 15px;
}
#messages .error td {
background: url('error.gif') no-repeat left center;
padding-left: 15px;
}
本身已经呈现了HTML <h:messages layout="table">
。我认为围绕它的整个表格也是不必要的。只需按照常用的CSS方式应用样式。
<table>
更新:根据评论,您正在寻找以下内容:
#messages {
width: 375px;
margin: 0 auto;
border: 1px black solid;
border-collapse: collapse;
}
使用CSS:
<h:messages layout="table" styleClass="messages info" infoClass="info" errorClass="error" />
<h:messages layout="table" styleClass="messages error" infoClass="info" errorClass="error" />
这会显示两个单独的消息表,一个用于.messages {
width: 375px;
margin: 0 auto;
border-collapse: collapse;
border: 1px black solid;
}
.messages.info {
background: url('info.gif') no-repeat left center;
}
.messages.error {
background: url('error.gif') no-repeat left center;
}
.messages.info tr.error, .messages.error tr.info {
display: none;
}
.messages td {
padding-left: 15px;
}
,另一个用于info
消息,每个消息在左中心都有一个图标。