TeacherSelect.cshtml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "TeacherSelect";
  5. }
  6. @section scripts{
  7. <script src="~/Scripts/Business/Common/TeacherSelector.js" type="text/javascript"></script>
  8. }
  9. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  10. <div class="p_title">
  11. @*<div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  12. 教师信息列表
  13. </div>*@
  14. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">
  15. <div class="current_navbar toolbar">
  16. <div class="func_info">
  17. <a class="easyui-linkbutton" href="javascript:Teacher_Confirm()" data-options="iconCls:'icon-ok',plain:'true'"
  18. onfocus="this.blur()">选中</a>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. <form id="formQuery" method="post">
  24. @Html.PositionCondition("TeacherSelect")
  25. <div class="search_keyword">
  26. <div class="search_input">
  27. <ul>
  28. @*<li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("Campus"):</li>
  29. <li class="sv">
  30. @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Campus/CampusDropdownListBanid"), ID = "CampusDropdown", Name = "CampusDropdown", OnSelect = "QueryCampusDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
  31. </li>*@
  32. <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("College"):</li>
  33. <li class="sv">
  34. @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/College/CollegeDropdownListBanid"), ID = "CollegeDropdown", Name = "CollegeDropdown", OnSelect = "QueryCollegeDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
  35. </li>
  36. <li class="sn" style="padding-left: 5px;">教研室:</li>
  37. <li class="sv">
  38. @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Department/DepartmentDropdownListBanid"), ID = "DepartmentDropdown", Name = "DepartmentDropdown", OnSelect = "QueryDepartmentDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
  39. </li>
  40. @*<li class="sn" style="padding-left: 5px;">是否有照片:</li>
  41. <li class="sv">
  42. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, Name = "PhotoUrltmentDropdown", ID = "PhotoUrltmentDropdown", OnSelect = "QueryPhotoUrltmentDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
  43. </li>*@
  44. </ul>
  45. </div>
  46. </div>
  47. </form>
  48. <div class="search_list">
  49. @Html.DataGrid(new DataGridOptions
  50. {
  51. Columns = new List<DataGridColumn>()
  52. {
  53. new CheckBoxFieldColumn{ HeaderText="", FieldName="UserID" },
  54. new BoundFieldColumn { FieldName="StaffCode", HeaderText="教职工号", Align=AlignStyle.Center, Width=0.04 },
  55. new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center, Width=0.04 },
  56. new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, Width=0.03 },
  57. //new BoundFieldColumn { FieldName="BirthDate", HeaderText="出生日期", Align=AlignStyle.Center, Width=0.06, Formatter = Formatter.OnlyYearMonthDay },
  58. new BoundFieldColumn { FieldName="IncumbencyStateName", HeaderText="在职状态", Align=AlignStyle.Center, Width=0.04 },
  59. //new BoundFieldColumn { FieldName="TeacherTypeName", HeaderText="教师类型", Align=AlignStyle.Center, Width=0.04 },
  60. //new BoundFieldColumn { FieldName="TitleName", HeaderText="职称", Align=AlignStyle.Center, Width=0.04 },
  61. new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=0.12 },
  62. new BoundFieldColumn { FieldName="DepartmentID", HeaderText="教研室", Align=AlignStyle.Center, Width=0.04, IsHidden=true },
  63. new BoundFieldColumn { FieldName="DepartmentName", HeaderText="教研室", Align=AlignStyle.Center, Width=0.12, IsHidden=true }
  64. },
  65. PageSize = 20,
  66. IsCheckOnSelect = true,
  67. //DataSourceUrl = Url.Content("~/EducationMissionClass/ALLTeacherList"),
  68. DataSourceUrl = Url.Content("~/Staff/List"),
  69. ID = "dgStaffList",
  70. IsPagination = true,
  71. IsShowRowNumbers = true,
  72. IsSingleSelect = false
  73. })
  74. </div>
  75. </div>