jsf2 – splitter composite component
I was playing with the composite component capability of jsf2. It essentially allows you to build up “templates” of reusable layouts and content. One component that I did not find in the jsf component library I am using (richfaces) is a splitter. I know its in the openfaces component library, but I was wondering how easy it would be to create something quickly. So, without regard for colors and layout requirements, I put together: 1: <? xml version ="1.0" encoding ="UTF-8" ? > 2: <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 3: "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > 4: < ui:component xmlns ="http://www.w3.org/1999/xhtml" 5: xmlns:h ="http://java.sun.com/jsf/html" 6: xmlns:f ="http://java.sun.com/jsf/core" 7: xmlns:ui ="http://java.sun.com/jsf/facelets" 8: xmlns:a4j ="http://richfaces.org/a4j...