How to set colspan and rowspan in JSF panelGrid?
None of both is possible with the standard JSF implementation. There are 3 ways to fix this: Write plain HTML yourself. A <h:panelGrid> basically renders a HTML <table>. Do the same. Create a custom HTML renderer which supports this. It’ll however be a lot of sweat and pain. Use a 3rd party component library which … Read more