| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <%@ 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 src="plug-in/layer/layer.js"></script>
- <script>
- function btn_ok(){
- $("#btnsub").click();
- }
- function callback(data){
-
-
- if(data.success){
- layer.alert(data.msg, function(index){
- window.location.href="tBusUserTechangController.do?list"
- layer.close(index);
- });
- }
- else{
- layer.alert(data.msg);
- }
- }
- </script>
- <script type="text/javascript">
- //编写自定义JS代码
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="tBusUserTechangController.do?doUpdate">
- <input id="id" name="id" type="hidden" value="${tBusUserTechangPage.id }"/>
- <input id="userId" name="userId" type="hidden" style="width: 150px" value='${tBusUserTechangPage.userId}'/>
-
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 专业特长:
- </label>
- </td>
- <td class="value">
- <t:dictSelect field="techangType" type="list" typeGroupCode="techangType" defaultVal="${tBusUserTechangPage.techangType}" hasLabel="false" title="特长类型" ></t:dictSelect>
- <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="description" name="description" type="text" style="width: 300px" ignore="ignore" value='${tBusUserTechangPage.description}'/>
- <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/techang/tBusUserTechang.js"></script>
|