<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"> <head> <title>Hello JSF</title> </head> <body> <h:form> <h:panelGrid columns="7"> <h:outputLabel value="Ad : "></h:outputLabel> <h:inputText value="#{dataBean.person.name}"></h:inputText> <h:outputLabel value="Maaş : "></h:outputLabel> <h:inputText value="#{dataBean.person.salary}"></h:inputText> <h:outputLabel value="Doğum Tarihi: "></h:outputLabel> <h:inputText value="#{dataBean.person.birthDate}"> <f:convertDateTime pattern="dd.MM.yyyy" locale="tr" ></f:convertDateTime> </h:inputText> <h:commandButton actionListener="#{dataBean.add}" value="Ekle"></h:commandButton> </h:panelGrid> <h:dataTable value="#{dataBean.personModel}" var="p"> <h:column> <f:facet name="header">Sıra</f:facet> <h:outputText value="#{dataBean.personModel.rowIndex + 1}"></h:outputText> </h:column> <h:column> <f:facet name="header">Ad</f:facet> <h:outputText value="#{p.name}"></h:outputText> </h:column> <h:column> <f:facet name="header">Doğum Tarihi</f:facet> <h:outputText value="#{p.birthDate}"> <f:convertDateTime pattern="dd.MM.yyyy" locale="tr" timeZone="Turkey" /> </h:outputText> </h:column> <h:column> <f:facet name="header">Maaş</f:facet> <h:outputText value="#{p.salary}"> <f:convertNumber type="currency" currencySymbol="₺"></f:convertNumber> </h:outputText> </h:column> </h:dataTable> </h:form> </body> </html>Dosyayı İndir