List.cshtml 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Entities;
  3. @using EMIS.Web.Controls;
  4. @{
  5. ViewBag.Title = "List";
  6. }
  7. @section scripts{
  8. <script src="~/Scripts/Business/ExaminationManage/ExaminationTeacher.js" type="text/javascript"></script>
  9. }
  10. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  11. @Html.Position()
  12. <form id="formQuery" method="post" action="@Url.Content("~/ExaminationTeacher/Excel")">
  13. @Html.PositionCondition()
  14. <div class="search_keyword">
  15. <div class="search_input">
  16. <ul>
  17. <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("Campus"):</li>
  18. <li class="sv">
  19. @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Campus/CampusDropdownListBanid"), ID = "CampusDropdown", Name = "CampusDropdown", OnSelect = "QueryCampusDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgExaminationTeacherList" } })
  20. </li>
  21. <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("College"):</li>
  22. <li class="sv">
  23. @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/College/CollegeDropdownListBanid"), ID = "CollegeDropdown", Name = "CollegeDropdown", OnSelect = "QueryCollegeDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgExaminationTeacherList" } })
  24. </li>
  25. <li class="sn" style="padding-left: 5px;">教研室:</li>
  26. <li class="sv">
  27. @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Department/DepartmentDropdownListBanid"), ID = "DepartmentDropdown", Name = "DepartmentDropdown", OnSelect = "QueryDepartmentDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgExaminationTeacherList" } })
  28. </li>
  29. </ul>
  30. </div>
  31. </div>
  32. <div class="p_title">
  33. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  34. 监考员列表</div>
  35. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("List")</div>
  36. </div>
  37. </form>
  38. <div class="search_list">
  39. @Html.DataGrid(new DataGridOptions
  40. {
  41. Columns = new List<DataGridColumn>()
  42. {
  43. new CheckBoxFieldColumn{ HeaderText="", FieldName="UserID" },
  44. new BoundFieldColumn { FieldName="StaffCode", HeaderText="教职工号", Align=AlignStyle.Center, Width=0.14 },
  45. new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center, Width=0.1 },
  46. new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, Width=0.05 },
  47. new BoundFieldColumn { FieldName="BirthDate", HeaderText="出生日期", Align=AlignStyle.Center, Formatter = Formatter.OnlyYearMonthDay, Width=0.12 },
  48. new BoundFieldColumn { FieldName="TeacherTypeName", HeaderText="教师类型", Align=AlignStyle.Center, OverflowLength=11, Width=0.1 },
  49. new BoundFieldColumn { FieldName="IncumbencyStateName", HeaderText="当前状态", Align=AlignStyle.Center, Width=0.1 },
  50. new BoundFieldColumn { FieldName="TitleName", HeaderText="职称", Align=AlignStyle.Center, OverflowLength=11, Width=0.1 },
  51. new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, OverflowLength=17, Width=0.15 }
  52. },
  53. IsCheckOnSelect = true,
  54. DataSourceUrl = Url.Content("~/ExaminationTeacher/List"),
  55. ID = "dgExaminationTeacherList",
  56. IsPagination = true,
  57. IsShowRowNumbers = true,
  58. IsSingleSelect = false
  59. })
  60. </div>
  61. </div>