123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- @model EMIS.ViewModel.EducationSchedule.CollegeSubmitView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Submit";
- }
- @section scripts{
- <script type="text/javascript">
- var windowID = '@(Request["WindowID"])';
- </script>
- <script src="@Url.Content("~/Scripts/Business/SchedulingManage/Scheduling/Submit.js")" type="text/javascript"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Ajax.BeginForm(new AjaxOptions
- {
- OnSuccess = "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("SchedulingSubmit")
- </div>
- </div>
- <div class="search_list">
- <table cellpadding="0" cellspacing="0" id="specialtytable">
- <tr>
- <td>
- 选择@EMIS.Utility.RSL.Get("College"):
- </td>
- <td>
- @Html.DropdownListFor((x => x.CollegeID), new DropdownListOptions
- {
- BindType = DropdownListBindType.None,
- ItemSourceUrl = Url.Content("~/College/CollegeDropdownListBanids"),
- ID = "CollegeDropdown",
- Name = "CollegeDropdown",
- OnLoadSuccess = "QueryCollegeDropdownList"
- })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|