As in Configuring Icefaces and Seam PDF, when you want to render excel pages in an application that already uses seam and icefaces, you need to use the default view handler for rendering the excel files. So you need to follow some of the same steps… Separate out the pages so that some are icefaces [...]
Entries Tagged as 'icefaces'
Configuring Icefaces and Seam PDF
August 17th, 2009 No Comments
Unfortunately seam-pdf doesn’t play nice with ICEfaces. Specifically, the D2DFaceletViewHandler doesn’t do pdf/email rendering. The workaround for this is to separate the application into ICEFaces (ice: tags) and Non-ICEFaces (h: tags) pages which are the ones that trigger a pdf or email render. You can replace icefaces.jar with just-ice.jar, which contains renderers [...]
Icefaces link issue in Seam – missing dataModel
March 9th, 2009 No Comments
The problem is:
We have a list of objects (we’ll call them Cars) displayed as results from a search in a seam web application. This is displayed as rows, iterating through the results to reference thisCar for the current result in each row. We want to be able to select one of the Cars [...]