cancel
Showing results for 
Search instead for 
Did you mean: 

html message on the server console

kayan
Champ in-the-making
Champ in-the-making
Hi,

I am getting the following html codes when i am browsing any page from webclient.

<div style="display:none"></div>
2008-08-07 18:18:13,071 (UIComponentBodyTagBase.java:51) WARN  org.apache.myfaces.shared_impl.taglib.UIComponentBodyTagBase - Component with id 'browse:content-panel-facets' (org.apache.myfaces.taglib.html.HtmlPanelGroupTag tag) and path : {Component-Path : [Class: javax.faces.component.UIViewRoot,V
iewId: /jsp/browse/browse.jsp][Class: javax.faces.component.html.HtmlForm,Id: browse][Class: javax.faces.component.html.HtmlPanelGroup,Id: content-panel-facets]}renders it's children, but has embedded JSP or HTML code. Use the <f:verbatim> tag for nested HTML. For comments use <%/* */%> style JSP co
mments instead of <!– –> style HTML comments.
BodyContent:
<div style="display:none"></div>

Can anybody help how i can stop getting this on my alfresco server console?

Thanks
Kayan
1 REPLY 1

kayan
Champ in-the-making
Champ in-the-making
Hi All,

I found myself the solution.  Actually you have to put all the html tags under "verbatim" tag. You can check the "browse.jsp" and use the snippet like

<f:verbatim>
   <div style="display:none">
</f:verbatim>
<a:actionLink id="content-apply" value="" actionListener="#{BrowseBean.updateContentPageSize}" />
<f:verbatim>
   </div>
</f:verbatim>

Cheers
Kayan