@model EMIS.ViewModel.ScoreManage.ScoreEditView @using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @using EMIS.Web.Controls.Score; @{ ViewBag.Title = "成绩录入信息"; } @section scripts{ } @using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
成绩录入信息
@Html.ContextMenuBar("Rebut")
@Html.HiddenFor(x => x.FinalExaminationID) @Html.HiddenFor(x => x.UserID)
@Html.LabelFor(x => x.SchoolyearID): @Html.TextBoxFor(x => x.SchoolyearCode, new TextBoxOptions { IsEnabled = false }) @Html.LabelFor(x => x.CourseName): @Html.TextBoxFor(x => x.CourseName, new TextBoxOptions { IsEnabled = false })
@Model.ExamsCategoryName @Html.ScoreFormularListFor(x => x.ScoreFormulaID, x => x.IsTotalFormula, new DropdownListOptions { Width = 230 }) @Html.CreditFormularListFor(x => x.CreditFormulaID, x => x.IsCreditFormula, new DropdownListOptions { Width = 230 }) @Html.GradePointFormularListFor(x => x.GradePointFormulaID, x => x.IsGradePointFormula, new DropdownListOptions { Width = 230 })
@Html.ScoreEditGrid("dgScoreDetailList", false, true, Model.FinalExaminationID.Value)
@Html.TextAreaFor(x => x.Comment, new Dictionary { { "style", "width:90%; height:12px;" } })
}