123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @model EMIS.ViewModel.EducationManage.TrainingClassView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Edit";
- }
- @section scripts{
- <script src="~/Scripts/Business/EducationManage/TrainingClassEdit.js"></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"
- }))
- {
- @Html.HiddenFor(x => x.TrainingClassID)
- <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("Edit")</div>
- </div>
- <div class="search_list popupWindowContent">
- <table cellpadding="0" cellspacing="0" id="departmenttable">
- <tr>
- <td style="width: 150px">
- @Html.LabelFor(x => x.SchoolyearCode):
- </td>
- <td>
- @Html.TextBoxFor(x => x.SchoolyearCode, new TextBoxOptions() { IsEnabled = false })
- </td>
- <td>
- @Html.LabelFor(x => x.ExaminationBatchName):
- </td>
- <td>
- @Html.TextBoxFor(x => x.ExaminationBatchName, new TextBoxOptions() { IsEnabled = false })
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.ExaminationTypeName):
- </td>
- <td>
- @Html.TextBoxFor(x => x.ExaminationTypeName, new TextBoxOptions() { IsEnabled = false })
- </td>
- <td>
- @Html.LabelFor(x => x.ExaminationProjectName):
- </td>
- <td>
- @Html.TextBoxFor(x => x.ExaminationProjectName, new TextBoxOptions() { IsEnabled = false })
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.Name):
- </td>
- <td colspan="3">
- @Html.TextBoxFor(x => x.Name, new Dictionary<string, object> { { "style", "width: 75%" } })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|