1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @model EMIS.ViewModel.StudentManage.StudentProfile.StudentConductView
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "ConductInput";
- }
- @section scripts{
- <script type="text/javascript">
- //加载
- $(function () {
- var userIDs = top.$("#@(Request["WindowID"])").data("inputData").join(',');
- $("#userIDs").val(userIDs);
- });
- //确定
- function Student_ConductInputConfirm() {
- var schoolyearNumID = $("#SchoolyearNumID").combogridX("getValue");
- if (schoolyearNumID == null || schoolyearNumID == "" || schoolyearNumID == "-1") {
- $.messager.alert("系统提示", "请选择录入的学年。");
- return;
- }
- $(document.forms[0]).submit();
- }
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Ajax.BeginForm(new AjaxOptions
- {
- OnSuccess = "EMISFunction.FormSuccess",
- OnBegin = "EMISFunction.FormSubmit",
- OnComplete = "EMISFunction.FormComplete"
- }))
- {
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;"></div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("CotInput")</div>
- </div>
- <div class="search_list">
- @Html.Hidden("userIDs")
- <table cellpadding="0" cellspacing="0" id="applytable">
- <tr>
- <td style="width: 85px;color: red;">
- @Html.LabelFor(x => x.SchoolyearNumID):
- </td>
- <td colspan="3">
- @Html.DictionaryComboGridFor(EMIS.ViewModel.DictionaryItem.CF_SchoolyearNum, (x => x.SchoolyearNumID), DropdownListBindType.PleaseSelect, new ComboGridOptions() { IsEnabled = true })
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.Comment):
- </td>
- <td colspan="3">
- @Html.TextAreaFor(x=>x.Comment, new Dictionary<string, object>
- {
- { "style", "width: 90%;min-height: 80px" }
- })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|