@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; //学制 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{ }
@Html.Position()
查询条件
@Html.PositionCondition()
  • 专业名称:
  • @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.06 }, new BoundFieldColumn { FieldName="Name", HeaderText="专业名称", Align=AlignStyle.Center, Width=0.1 } } } }, new Dictionary { { "data-condition", "dgSpecialtyList" } })
  • @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", "dgSpecialtyList" } })
  • 学习形式:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Learningform, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryLearningform", Name = "DictionaryLearningform", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSpecialtyList" } })
  • 学制:
  • @Html.ComboGrid(cgopLearnSystem, new Dictionary { { "data-condition", "dgSpecialtyList" } })
  • 专业科类:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Scienceclass, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryScienceclass", Name = "DictionaryScienceclass", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSpecialtyList" } })
  • 专业属性:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Property, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryProperty", Name = "DictionaryProperty", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSpecialtyList" } })
  • 启用状态:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.SYS_STATUS, new DropdownListOptions { ID = "DictionaryRecordStatus", Name = "DictionaryRecordStatus", BindType = DropdownListBindType.SelectAll, SelectedValue = (int)EMIS.ViewModel.SYS_STATUS.USABLE, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSpecialtyList" } })
专业信息列表
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="SpecialtyID" }, new LinkButtonColumn { FieldName="Code", HeaderText="专业代码", Align=AlignStyle.Center, OrderFieldName="StandardCode", Handle="edit", Width=0.06 }, new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center, 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="StandardTitleName", HeaderText="专业称号", Align=AlignStyle.Center, OrderFieldName="StandardTitle", Width=0.05 }, //new BoundFieldColumn { FieldName="StandardLevelName", HeaderText="称号级别", Align=AlignStyle.Center, OrderFieldName="StandardLevel", Width=0.05 }, new BoundFieldColumn { FieldName="RecordStatusStr", HeaderText="启用状态", Align=AlignStyle.Center, OrderFieldName="RecordStatus", Width=0.04 }, new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width=0.03, OverflowLength=6 } }, CustomerRowStyleFun = "SetRedGrid", IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Specialty/List"), ID = "dgSpecialtyList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })