123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @model EMIS.ViewModel.SelectCourse.SelectCourseConditionView
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @Html.Position()
- @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("Index")</div>
- </div>
- <div class="noPopupContent">
- <table cellpadding="0" cellspacing="0" id="departmenttable" width="100%">
- <tr>
- <td width="200">@Html.LabelFor(x => x.Schoolyear):
- </td>
- <td style="background-color: white;">@Html.DropdownListFor(x => x.Schoolyear, new DropdownListOptions { ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"), TextField = "Text", ValueField = "Value", BindType = DropdownListBindType.PleaseSelect })
- </td>
- </tr>
- @*<tr>
- <td>@Html.LabelFor(x => x.CrossGrade):
- </td>
- <td style="background-color: white;">@Html.CheckBoxFor(x => x.CrossGrade)
- </td>
- </tr>*@
- <tr>
- <td>@Html.LabelFor(x => x.IsNoLimit):
- </td>
- <td style="background-color: white;">@Html.CheckBoxFor(x => x.IsNoLimit)
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
- @section scripts{
- <script type="text/javascript">
- function Condition_Save() {
- $(document.forms[0]).submit();
- }
- </script>
- }
|