From 4d3a0d04e0186b149000559bea4cb0567c99ecfc Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Sat, 7 Apr 2007 20:51:42 +0000 Subject: [PATCH] added support for EL expressions in end-state view --- .../src/main/webapp/costOverview.jsp | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/spring-webflow-samples/sellitem-jsf/src/main/webapp/costOverview.jsp b/spring-webflow-samples/sellitem-jsf/src/main/webapp/costOverview.jsp index 6e54868b..ca8ffc41 100644 --- a/spring-webflow-samples/sellitem-jsf/src/main/webapp/costOverview.jsp +++ b/spring-webflow-samples/sellitem-jsf/src/main/webapp/costOverview.jsp @@ -1,6 +1,8 @@ <%@ page contentType="text/html" %> <%@ page session="false" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> +<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> @@ -14,24 +16,25 @@ Logo +

Purchase cost overview


- + - + - + - + @@ -42,19 +45,19 @@ - + - + - + - +
Price:${sale.price}Price:
Item count:${sale.itemCount}Item count:
Category:${sale.category}Category:
Shipping: ${sale.shippingType} No shipping required: you're picking up the items
Base amount:${sale.amount}Base amount:
Delivery cost:${sale.deliveryCost}Delivery cost:
Discount:${sale.savings} (Discount rate: ${sale.discountRate})Discount: (Discount rate: )

Total cost:${sale.totalCost}Total cost:
@@ -65,6 +68,7 @@
+