I have a problem with page rendering after migration from WAS 6.0 + JSF 1.1 to WAS 7.0 + JSF 1.2. The main problem is in the following code:
<h:messages rendered="#{!webData.facesMessagesEmpty}" styleClass="messages"
showSummary="true" showDetail="false" title="Messages" layout="table" id="eMessages"
infoClass="info_with_icon" warnClass="warn_with_icon" errorClass="error_with_icon"
fatalClass="fatal_with_icon" />
This code works correctly under WAS 6.0 + JSF 1.1 but doesn’t use styles under WAS 7.0 + JSF 1.2. I have made a little investigation and found that this problem is only for layout="table". If I use layout="list" then styles are ok. Unfortunately I need table here (because layout="list" creates indent, and I don't how to aviod this). Also I have found that generated HTML code in case of layout="table" is very different for JSF 1.1 and JSF 1.2.
So my question - is it possible to force old-style (JSF 1.1) HTML generation for WAS 7.0 + JSF 1.2? I tried to google it but can’t find answer...
<table id="eMessages"> <tbody> <tr> <td> <span class="info_with_icon">Number of TP found is: 0</span> </td> </tr> </tbody> </table>JSF 1.2<ul id="eMessages" class="messages" title="eMessages"> <li class="info_with_icon_messages"> Number of TP found is: 0 </li> </ul>when I used list layout (table layout for some reason did not take styles, so I can't use it). – user1083508 Dec 6 '11 at 13:43layout="table". – BalusC Dec 6 '11 at 13:50<table id="eMessages"> <tbody> <tr> <td> <span class="info_with_icon">Number of TP found is: 0</span> </td> </tr> </tbody> </table>JSF1.2 (with table layout this time)<table id="eMessages" class="messages"> <tbody> <tr class="info_with_icon_messages"> <td> Number of TP found is: 0 </td> </tr> </tbody> </table>As I understand, <tr> can not have class attribute, my browser do not show any style from 'info_with_icon_messages' in this case. – user1083508 Dec 6 '11 at 14:44