Merge.cshtml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. @model EMIS.ViewModel.EducationManage.TrainingClassMergeView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. @{
  5. ViewBag.Title = "Edit";
  6. }
  7. @section scripts{
  8. <script src="~/Scripts/Business/EducationManage/TrainingClassMerge.js" type="text/javascript"></script>
  9. }
  10. <style type="text/css">
  11. .txt {
  12. width: 250px;
  13. }
  14. </style>
  15. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  16. @using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" }))
  17. {
  18. @Html.HiddenFor(x => x.TrainingClassIDs)
  19. <div class="p_title">
  20. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  21. 合班信息
  22. </div>
  23. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Merge")</div>
  24. </div>
  25. <div class="search_list">
  26. <table cellpadding="0" cellspacing="0">
  27. <tr>
  28. <td>
  29. @Html.LabelFor(x => x.Name):
  30. </td>
  31. <td>
  32. @Html.TextBoxFor(x => x.Name, new TextBoxOptions { }, new Dictionary<string, string> { { "style", "width: 90%;" } })
  33. </td>
  34. </tr>
  35. </table>
  36. </div>
  37. }
  38. </div>