<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
Ürün Özet Sayfası
<h:form>
Kategori : <h:selectOneMenu value="#{productSummaryBean.selectedCategoryId}">
<f:selectItems value="#{productSummaryBean.categoryItems}" />
</h:selectOneMenu><br/>
<h:commandButton action="#{productSummaryBean.filter()}" value="Süz"/>
<h:dataTable value="#{productSummaryBean.productList}" var="product" border="1">
<h:column>
<f:facet name="header">ÜRÜN NO</f:facet>
<h:outputText value="#{product.productId}"/>
</h:column>
<h:column>
<f:facet name="header">ÜRÜN ADI</f:facet>
<h:outputText value="#{product.productName}"/>
</h:column>
<h:column>
<f:facet name="header">SATIŞ FİYATI</f:facet>
<h:outputText value="#{product.salesPrice}"/>
</h:column>
<h:column>
<f:facet name="header">KATEGORİ ADI</f:facet>
<h:outputText value="#{product.category.categoryName}"/>
</h:column>
<h:column>
<h:outputLink value="ProductDetailPage.xhtml">
<f:param name="productId" value="#{product.productId}"/>
Güncelle
</h:outputLink>
</h:column>
<h:column>
<h:commandLink action="#{productSummaryBean.delete()}">
<f:param name="productId" value="#{product.productId}"/>
Sil
</h:commandLink>
</h:column>
</h:dataTable>
<h:outputLink value="ProductDetailPage.xhtml"> Ekle </h:outputLink><br/>
<h:outputLink value="index.xhtml"> Ev </h:outputLink><br/>
</h:form>
</h:body>
</html>
Dosyayı İndir