Java Reference
In-Depth Information
The value binding of the af:outputLabel components is set to the Catalog entity
instance's properties, the Catalog entity instance that was retrieved in the find()
method with the catalog id input. The catalogentry.jsp is listed below:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html;charset=windows-1252"%>
<%@ taglib
uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib
uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib
uri="http://xmlns.oracle.com/adf/faces/rich" prefix="af"%>
<f:view>
<af:document title="catalogntry" id="d1">
<af:form id="f1">
<h1>
<font face="Verdana" color="#5252ff">
Catalog Entry
</font>
</h1>
<h1>
<af:panelFormLayout rows="5" maxColumns="2" id="pfl1">
<af:outputLabel value="Journal:" id="ol1" />
<af:outputLabel value="Publisher" id="ol2" />
<af:outputLabel value="Edition" id="ol3" />
<af:outputLabel value="Title" id="ol4" />
<af:outputLabel value="Author" id="ol5" />
<af:outputLabel value="#{backing_create.catalog.journal}"
id="ol6" />
<af:outputLabel value="#{backing_create.catalog.publisher}"
id="ol7" />
<af:outputLabel value="#{backing_create.catalog.edition}"
id="ol8" />
<af:outputLabel value="#{backing_create.catalog.title}"
id="ol9" />
<af:outputLabel value="#{backing_create.catalog.author}"
id="ol10" />
</af:panelFormLayout>
</h1>
</af:form>
</af:document>
</f:view>
 
Search WWH ::




Custom Search