12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Edit";
- }
- @section scripts{
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- var idList = "@ViewBag.DetailStudentList";
- function Student_Cancel() {
- $("#idList").val("@ViewBag.DetailStudentList");
- $(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; float:right">@Html.Button(new ButtonOptions { OnClick = "Student_Cancel()", Icon = ButtonIcon.Save, Text = "确定" })</div>
- </div>
- <div class="search_list">
- <table cellpadding="0" cellspacing="0" id="FinalExaminationtable">
- @Html.Hidden("idList")
- <tr>
- <td>
- <label>退回原因:</label>
- </td>
- <td>
- @Html.TextArea("Remark", new { style = "width: 95%;" })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|