@model EMIS.ViewModel.DegreeManage.DegreeManage.DegreeApplyView @using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "DegreeConditionPackageSubmit"; //学位公式 ComboGridOptions cgopDegreeConditionPackage = new ComboGridOptions { TextField = "Title", ValueField = "DegreeConditionPackageID", ID = "DegreeConditionPackageDropdown", Name = "DegreeConditionPackageDropdown", OnSelect = "queryDegreeConditionPackageStudentType", Width = 210, GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Title", HeaderText="学位公式", Align=AlignStyle.Center, Width=150 }, new BoundFieldColumn { FieldName="StudentTypeName", HeaderText="学生类别", Align=AlignStyle.Center, Width=60 } }, PageSize = 5, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/DegreeConditionPackage/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@*申请提交(学位)*@
@Html.ContextMenuBar("Submit")
@Html.Hidden("degreeApplyIDs") @Html.HiddenFor(x => x.StudentTypeID)
@Html.LabelFor(x => x.Title): @Html.ComboGridFor(x => x.DegreeConditionPackageID, cgopDegreeConditionPackage)
@Html.LabelFor(x => x.Comment): @Html.TextAreaFor(x=>x.Comment, new Dictionary { { "style", "width: 90%;min-height: 50px" } })
}