12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- }
- @section scripts{
- <script src="~/Scripts/Business/EvaluationManage/EvaluationEnter.js"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @Html.Position()
- <div class="p_SearchTitle">
- <div style="float: left; margin-left: 10px; font-size: 12px; line-height: 30px;">
- 查询条件
- </div>
- </div>
- <form id="formQuery" method="post" action="@Url.Action("Excel")">
- @Html.PositionCondition()
- </form>
- <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("List")</div>
- </div>
- <div class="search_list">
- @Html.DataGrid(new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new CheckBoxFieldColumn{ HeaderText="", FieldName="EvaluationEnterID" },
- new LinkButtonColumn { Text="进入评价", HeaderText="操作", Align=AlignStyle.Center, Handle="edit", Width=0.07 },
- new BoundFieldColumn { FieldName="EvaluationTableID", HeaderText="评价表ID", Align=AlignStyle.Center,IsHidden=true },
- new BoundFieldColumn { FieldName="EvaluationSettingID", HeaderText="评价设置ID", Align=AlignStyle.Center,IsHidden=true },
- new BoundFieldColumn { FieldName="IsEvaluation", HeaderText="是否可评", Align=AlignStyle.Center,IsHidden=true },
- new BoundFieldColumn { FieldName="EvaluationSettingCode", HeaderText="评价编号", Align=AlignStyle.Center, OverflowLength=22, Width=0.13 },
- new BoundFieldColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center, OverflowLength=14, Width=0.1 },
- new BoundFieldColumn { FieldName="EvaluationTableTypeName", HeaderText="评价类型", Align=AlignStyle.Center, Width=0.08 },
- new BoundFieldColumn { FieldName="UserCodes", HeaderText="被评教师号", Align=AlignStyle.Center, Width=0.11 },
- new BoundFieldColumn { FieldName="UserNames", HeaderText="被评教师", Align=AlignStyle.Center, OverflowLength=14, Width=0.1 },
- //, OverflowLength=16
- new BoundFieldColumn { FieldName="EducationMissionClassName", HeaderText="任务班名称", Align=AlignStyle.Center, OverflowLength=24, Width=0.2 },
- new BoundFieldColumn { FieldName="EvaluationTypeName", HeaderText="参评类型", Align=AlignStyle.Center, Width=0.06 },
- new BoundFieldColumn { FieldName="EvaluationCount", HeaderText="已评次数", Align=AlignStyle.Center, Width=0.05 },
-
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/EvaluationEnter/List"),
- ID = "dgEvaluationEnterList",
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- })
- </div>
- </div>
|