123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <c:set var="ctx" value="${pageContext.request.contextPath}"/>
- <script type="text/javascript" src="${ctx}/js/hotent/scriptMgr.js"></script>
- <script type="text/javascript">
- function afterOnload(){
- var afterLoadJs=[
- '${ctx}/js/hotent/formdata.js',
- '${ctx}/js/hotent/subform.js'
- ];
- ScriptMgr.load({
- scripts : afterLoadJs
- });
- }
- </script>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0" type="main">
- <tr>
- <th width="20%">议题名称: </th>
- <td><input type="text" id="FTopicName" name="FTopicName" value="${topicManagement.FTopicName}" class="inputText" validate="{required:false,maxlength:50}" /></td>
- </tr>
- <tr>
- <th width="20%">议题标签: </th>
- <td><input type="text" id="FTopicLabel" name="FTopicLabel" value="${topicManagement.FTopicLabel}" class="inputText" validate="{required:false,maxlength:100}" /></td>
- </tr>
- <tr>
- <th width="20%">议题分类: </th>
- <td><input type="text" id="FTopicClassification" name="FTopicClassification" value="${topicManagement.FTopicClassification}" class="inputText" validate="{required:false,maxlength:10}" /></td>
- </tr>
- <tr>
- <th width="20%">议题状态: </th>
- <td><input type="text" id="FTopicState" name="FTopicState" value="${topicManagement.FTopicState}" class="inputText" validate="{required:false,maxlength:10}" /></td>
- </tr>
- <tr>
- <th width="20%">议题简介: </th>
- <td><input type="text" id="FTopicSynopsis" name="FTopicSynopsis" value="${topicManagement.FTopicSynopsis}" class="inputText" validate="{required:false}" /></td>
- </tr>
- <tr>
- <th width="20%">上报人 : </th>
- <td><input type="text" id="FReportperson" name="FReportperson" value="${topicManagement.FReportperson}" class="inputText" validate="{required:false,maxlength:50}" /></td>
- </tr>
- <tr>
- <th width="20%">上报时间: </th>
- <td><input type="text" id="FReportingTime" name="FReportingTime" value="<fmt:formatDate value='${topicManagement.FReportingTime}' pattern='yyyy-MM-dd'/>" class="inputText date" validate="{date:true}" /></td>
- </tr>
- </table>
- <input type="hidden" name="id" value="${topicManagement.id}" />
|