Posted under JSF
Permalink
Tags Bug, Facelets, Gotcha, JSF, Primefaces, Tip
A simple Primefaces table sample application was not displaying in Chrome. Some of the output data from the cells plus some other metadata was displayed as raw text with no formatting.
This answer to FAQ question 6 in the documentation PDF details the problem and the solution:-
6. With facelets some components like charts do not work in Safari or Chrome but there?s no problem with Firefox.
The common reason is the response mimeType when using with PrimeFaces with facelets. You need to make sure responseType is “text/html”. With facelets you can use the <f:view contentType=”text/html”> to enforce this setting.
I added this to the sample code and Chrome then worked correctly. I checked the Primefaces Showcase and note that the same is done there.
Leave a Reply
You must be logged in to post a comment.