Is it possible to apply an XSLT to an XML document and generate markup that is processed by JSF/ICEFaces?
I need the XSLT to add <ice:commandButton elements and such, since some data elements to render also require related command buttons.
Do you also have some tutorials about XSLT and ICEFaces?
Thank you in advance.
Yes, it is definitely possible. You just need to create a servlet
Filterwhich runs before theFacesServletkicks in and takes care that the XSL-generated Facelet file is present there where theFacesServletexpects it. See also this answer for a detailed kickoff example.