@model EMIS.ViewModel.DQPSystem.SOCDetailView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @using EMIS.ViewModel; @{ } @section scripts{ }
@Html.Hidden("hidSOCDetailID", Model.SOCDetailID, new Dictionary { { "data-condition", "dgSOCDetailGroupStudentList" } }) @Html.HiddenFor(x => x.SOCDetailID) @if (Model.IsGroup == true) { }
@Html.LabelFor(x => x.Name): @Html.DisplayFor(x => x.Name) @Html.LabelFor(x => x.Credit): @Html.DisplayFor(x => x.Credit)
@Html.LabelFor(x => x.Weight): @Html.DisplayFor(x => x.Weight) @Html.Label("") @Html.Label("")
@Html.LabelFor(x => x.Description): @Html.DisplayFor(x => x.Description)
@Html.Uploader(new uploaderOption { IsEnabled = false, Name = "SOCAttachment", MainTableID = Model.SOCDetailID, Title = "SOC说明文件" })
@Html.DataGrid(new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="LoginID", HeaderText="学号", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="所在班级", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/SOCDetailScore/DetailStudentGroupList"), ID = "dgSOCDetailGroupStudentList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })