📄 productlist.jsp
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<f:view>
<f:loadBundle basename="resources.Messages" var="msgs"/>
<html>
<head>
<title><h:outputText value="#{msgs.product_title_listProduct}"/></title>
<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/pub/css/stylesheet.css"/>
</head>
<body>
<center>
<%@ include file="../header.jsp" %>
<h:form id="productListForm">
<h:dataTable id="table" value="#{productBean.productBeans}" var="product" rowClasses="tddata" headerClass="tdhead">
<f:facet name="header">
<h:outputText value="#{msgs.product_title_listProduct}"/>
</f:facet>
<h:column>
<f:facet name="header">
<h:outputText value="#{msgs.product_name}"/>
</f:facet>
<h:outputText value="#{product.name}"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="#{msgs.product_description}"/>
</f:facet>
<h:outputText value="#{product.description}"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value=""/>
</f:facet>
<h:commandLink action="#{productBean.editAction}" styleClass="highLightLink">
<h:outputText value="#{msgs.edit}"/>
<f:param name="productId" value="#{product.id}"/>
<f:param name="categoryId" value="#{product.category.id}"/>
</h:commandLink>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value=""/>
</f:facet>
<h:commandLink action="#{productBean.deleteAction}" styleClass="highLightLink">
<h:outputText value="#{msgs.delete}"/>
<f:param name="productId" value="#{product.id}"/>
<f:param name="categoryId" value="#{product.category.id}"/>
</h:commandLink>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value=""/>
</f:facet>
<h:commandLink action="recordCreate" styleClass="highLightLink">
<h:outputText value="#{msgs.new_record}"/>
<f:param name="productId" value="#{product.id}"/>
<f:param name="categoryId" value="#{product.category.id}"/>
</h:commandLink>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value=""/>
</f:facet>
<h:commandLink action="recordList" styleClass="highLightLink">
<h:outputText value="#{msgs.record_list}"/>
<f:param name="productId" value="#{product.id}"/>
<f:param name="categoryId" value="#{product.category.id}"/>
</h:commandLink>
</h:column>
</h:dataTable>
<h:messages errorClass="errorMessage" globalOnly="true"/>
</h:form>
<%@ include file="../footer.jsp" %>
</center>
</body>
</html>
</f:view>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -