@model EMIS.ViewModel.EnrollManage.SpecialtyManage.SpecialtyClassSettingView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @using EMIS.Utility; @{ ViewBag.Title = "SpecialtyClassSettingBatchAdd"; //学制 ComboGridOptions cgopLearnSystem = new ComboGridOptions { TextField = "LearnSystem", ValueField = "LearnSystem", ID = "DictionaryLearnSystem", Name = "DictionaryLearnSystem", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="LearnSystem", HeaderText="学制", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Specialty/LearnSystem"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, IsShowHeader = false } }; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { //生成成功后不关闭弹出页面(OnSuccess = "EMISFunction.FormSuccessNoClose") OnSuccess = "formSuccessReloadNoClose", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
查询条件
@Html.PositionCondition("SpecialtyClassSettingSelect")
  • 专业名称:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Standard, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryStandard", Name = "DictionaryStandard", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Code", HeaderText="专业代码", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="Name", HeaderText="专业名称", Align=AlignStyle.Center, Width=0.2 } } } }, new Dictionary { { "data-condition", "dgSpecialtyNoAddList" } })
  • @EMIS.Utility.RSL.Get("EducationID"):
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Education, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryEducation", Name = "DictionaryEducation", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSpecialtyNoAddList" } })
  • 学习形式:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Learningform, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryLearningform", Name = "DictionaryLearningform", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSpecialtyNoAddList" } })
  • 学制:
  • @Html.ComboGrid(cgopLearnSystem, new Dictionary { { "data-condition", "dgSpecialtyNoAddList" } })
  • 专业科类:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Scienceclass, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryScienceclass", Name = "DictionaryScienceclass", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSpecialtyNoAddList" } })
专业信息列表
@Html.ContextMenuBar("BatchAdd")
@Html.Hidden("specialtyIDs")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="SpecialtyID" }, new BoundFieldColumn { FieldName="Code", HeaderText="专业代码", Align=AlignStyle.Center, OrderFieldName="StandardCode", Width=0.06 }, new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center, OrderFieldName="StandardName", Width=0.1 }, new BoundFieldColumn { FieldName="EducationName", HeaderText=EMIS.Utility.RSL.Get("EducationID"), Align=AlignStyle.Center, OrderFieldName="EducationID", Width=0.05 }, new BoundFieldColumn { FieldName="LearningformName", HeaderText="学习形式", Align=AlignStyle.Center, OrderFieldName="LearningformID", Width=0.05 }, new BoundFieldColumn { FieldName="LearnSystem", HeaderText="学制", Align=AlignStyle.Center, Width=0.03 }, new BoundFieldColumn { FieldName="ScienceclassName", HeaderText="专业科类", Align=AlignStyle.Center, OrderFieldName="ScienceclassID", Width=0.05 }, new BoundFieldColumn { FieldName="PropertyName", HeaderText="专业属性", Align=AlignStyle.Center, OrderFieldName="PropertyID", Width=0.05 }, new BoundFieldColumn { FieldName="RecordStatusStr", HeaderText="启用状态", Align=AlignStyle.Center, OrderFieldName="RecordStatus", Width=0.05 } }, IsPostBack = true, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/SpecialtyClassSetting/SpecialtyNoAddList"), ID = "dgSpecialtyNoAddList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })
}