| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>项目关注表</title>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script type="text/javascript">
- //编写自定义JS代码
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="projectFavoriteController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${projectFavoritePage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 人员:
- </label>
- </td>
- <td class="value">
- <input id="userid" name="userid" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${projectFavoritePage.userid}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">人员</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 关注的项目:
- </label>
- </td>
- <td class="value">
- <input id="projectid" name="projectid" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${projectFavoritePage.projectid}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">关注的项目</label>
- </td>
- </tr>
-
- </table>
- </t:formvalid>
- </body>
- <script src = "webpage/cn/com/lzt/projectfavorite/projectFavorite.js"></script>
|