Hi,
I have this datatable with dynamic columns in my application. I'm trying to figure out why it shows up with no grid. (And how to enable grid for the datatable).
The JSP: (You can see a few attempts I made, which failed)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Celsius to Fahrenheit Convertor</title>
</head>
<body>
<f:view>
<h:form styleClass="list-background">
<h:panelGrid footerClass="subtitle" styleClass="list-background"
headerClass="subtitlebig" styleClass="medium"
columnClasses="subtitle,medium">
<h:panelGroup binding="#{myBean.dynamicDataTableGroup}" />
</h:panelGrid>
<h:commandButton value="Add" action="#{myBean.add}" />
</h:form>
</f:view>
</body>
</html>