+

Search Tips   |   Advanced Search

TicketDetailUpdate.jsp

 

<%-- jsf:pagecode language="java" location="/src/pagecode/TicketDetailUpdate.java" --%><%-- /jsf:pagecode --%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://www.ibm.com/jsf/html_extended" prefix="hx"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1" session="false"%>
<portlet:defineObjects />
<LINK rel="stylesheet" type="text/css"
	href='<%= renderResponse.encodeURL(renderRequest.getContextPath() + "/theme/stylesheet.css") %>'
	title="Style">
<f:view>
	<hx:scriptCollector id="scriptCollector1">
		<h:form styleClass="form" id="form1">
			<TABLE>
				<TBODY>
					<TR>
						<TD align="left">Ticket ID:</TD>
						<TD style="width:5px">&nbsp;</TD>
						<TD><h:outputText id="text1"
							value="#{pc_TicketDetailUpdate.ticketDetail.ticket.ticketId}"
							styleClass="outputText">
						</h:outputText></TD>
					</TR>
					<TR>
						<TD align="left">Title:</TD>
						<TD style="width:5px">&nbsp;</TD>
						<TD><h:inputText id="text2"
							value="#{pc_TicketDetailUpdate.ticketDetail.ticket.title}"
							styleClass="inputText">
						</h:inputText></TD>
					</TR>
					<TR>
						<TD align="left">Customer ID:</TD>
						<TD style="width:5px">&nbsp;</TD>
						<TD><h:inputText id="text3"
							value="#{pc_TicketDetailUpdate.ticketDetail.ticket.customerId}"
							styleClass="inputText">
						</h:inputText></TD>
					</TR>
					<TR>
						<TD align="left">Contact:</TD>
						<TD style="width:5px">&nbsp;</TD>
						<TD><h:inputText id="text4"
							value="#{pc_TicketDetailUpdate.ticketDetail.ticket.contact}"
							styleClass="inputText">
						</h:inputText></TD>
					</TR>
					<TR>
						<TD align="left">Owner:</TD>
						<TD style="width:5px">&nbsp;</TD>
						<TD><h:inputText id="text5"
							value="#{pc_TicketDetailUpdate.ticketDetail.ticket.owner}"
							styleClass="inputText">
						</h:inputText></TD>
					</TR>
					<TR>
						<TD align="left">Status:</TD>
						<TD style="width:5px">&nbsp;</TD>
						<TD><h:inputText id="text6"
							value="#{pc_TicketDetailUpdate.ticketDetail.ticket.status}"
							styleClass="inputText">
						</h:inputText></TD>
					</TR>
					<TR>
						<TD align="left">Note:</TD>
						<TD style="width:5px">&nbsp;</TD>
						<TD><h:inputText id="text7"
							value="#{pc_TicketDetailUpdate.ticketDetail.ticket.note}"
							styleClass="inputText">
						</h:inputText></TD>
					</TR>
				</TBODY>
			</TABLE>
			<h:messages styleClass="messages" id="messages1"></h:messages>
			<BR>
			<hx:commandExButton id="button1" styleClass="commandExButton"
				type="submit" value="Submit" action="#{pc_TicketDetailUpdate.doButton1Action}">
			</hx:commandExButton>
		</h:form>
	</hx:scriptCollector>
</f:view>