Submit.cshtml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @model EMIS.ViewModel.EducationSchedule.CollegeSubmitView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. @{
  5. ViewBag.Title = "Submit";
  6. }
  7. @section scripts{
  8. <script type="text/javascript">
  9. var windowID = '@(Request["WindowID"])';
  10. </script>
  11. <script src="@Url.Content("~/Scripts/Business/SchedulingManage/Scheduling/Submit.js")" type="text/javascript"></script>
  12. }
  13. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  14. @using (Ajax.BeginForm(new AjaxOptions
  15. {
  16. OnSuccess = "FormSuccess",
  17. OnBegin = "EMISFunction.FormSubmit",
  18. OnComplete = "EMISFunction.FormComplete"
  19. }))
  20. {
  21. <div class="p_title">
  22. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  23. </div>
  24. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">
  25. @Html.ContextMenuBar("SchedulingSubmit")
  26. </div>
  27. </div>
  28. <div class="search_list">
  29. <table cellpadding="0" cellspacing="0" id="specialtytable">
  30. <tr>
  31. <td>
  32. 选择@EMIS.Utility.RSL.Get("College"):
  33. </td>
  34. <td>
  35. @Html.DropdownListFor((x => x.CollegeID), new DropdownListOptions
  36. {
  37. BindType = DropdownListBindType.None,
  38. ItemSourceUrl = Url.Content("~/College/CollegeDropdownListBanids"),
  39. ID = "CollegeDropdown",
  40. Name = "CollegeDropdown",
  41. OnLoadSuccess = "QueryCollegeDropdownList"
  42. })
  43. </td>
  44. </tr>
  45. </table>
  46. </div>
  47. }
  48. </div>