I am doing a project where I am using JSF 1.2. In this i'm designed employee names and exam names these two names i'm getting dynamically.
In front end displaying normal format, now i want display in format of notifications like Facebook style.
It is possible in jsf?. I want change only GUI part.
This is my sample code
<f:view>
<h:dataTable var="emp" value="#{EmpBean.empList}" >
<h:column>
<f:facet name="header">
<h:outputText value="Added Emplyoees"></h:outputText>
</f:facet>
<h:outputText value="#{emp.empNames}"></h:outputText>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Names"></h:outputText>
</f:facet>
<h:outputText value="#{emp.examNames}"></h:outputText>
</h:column>
<h:column>
</h:dataTable>
</f:view>