📄 adminforumedit.jsp
字号:
<%@page contentType="text/html"%><%@page pageEncoding="UTF-8"%><%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%><%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%><%@taglib prefix="t" uri="http://myfaces.apache.org/tomahawk"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><style type="text/css">.tCol1 {width:30px;}.tCol2 {width:120px;}.tCol3 {}.tCol4 {width:200px;}.tCol5 {width:120px;text-align:center}.tCol6 {width:40px;text-align:center}.tCol7 {width:40px;text-align:center}.tStyle1 { width: 99%;}</style><f:view locale="#{localeBean.locale}"><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title> <h:outputText value="adminForumEdit"/> </title> <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/common/css/style.css"/> <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/bbs/css/style.css"/> </head> <body style="margin:0px"> <h:form id="form"> <h:panelGrid width="99%" columns="1" border="0" cellpadding="3" cellspacing="3" headerClass="th"> <f:facet name="header"> <h:outputText value="编辑讨论区"/> </f:facet> <h:messages globalOnly="true" showDetail="true" infoClass="infos" errorClass="errors" fatalClass="fatals"/> <h:panelGrid columns="2" border="0" width="100%" cellpadding="3" cellspacing="3" styleClass="table1" rowClasses="row2,row1"> <h:outputText value="专区图片"/> <h:panelGroup> <h:inputHidden value="#{bbs_adminForumEdit.forum.image}"></h:inputHidden> <h:graphicImage url="/bbs/images/upload/forum/#{bbs_adminForumEdit.forum.image}" height="25"/> </h:panelGroup> <h:outputLabel value="专区名称:" for="zName"/> <h:panelGroup> <h:inputText id="zName" required="true" size="30" value="#{bbs_adminForumEdit.forum.name}" > <f:validateLength minimum="2" maximum="30"/> </h:inputText> <h:message for="zName" errorClass="errors"/> </h:panelGroup> <h:outputLabel value="描述文字" for="zComment"/> <h:panelGroup> <h:inputTextarea id="zComment" rows="2" required="true" value="#{bbs_adminForumEdit.forum.comment}" styleClass="tStyle1"> <f:validateLength minimum="2" maximum="64"/> </h:inputTextarea> <h:message for="zComment" errorClass="errors"/> </h:panelGroup> <h:outputLabel value="锁区" for="beLock"/> <h:panelGroup> <h:selectOneRadio id="beLock" value="#{bbs_adminForumEdit.forum.beLock}"> <f:selectItem itemValue="true" itemLabel="是"/> <f:selectItem itemValue="false" itemLabel="否"/> </h:selectOneRadio> <h:message for="beLock" errorClass="errors"/> </h:panelGroup> <h:panelGroup/> <h:panelGroup> <h:inputHidden value="#{bbs_adminForumEdit.forum.num}"/> <h:commandButton value="确认编辑" action="#{bbs_adminForumEdit.update}" styleClass="buttonMarginRight"/> </h:panelGroup> </h:panelGrid> </h:panelGrid> </h:form> </body></html></f:view>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -