@model EMIS.ViewModel.SystemSetting.DictionaryView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@*字典类型信息*@
@Html.ContextMenuBar("Edit")
@Html.LabelFor(x => x.OrderNo): @Html.TextBoxFor(x => x.OrderNo) @Html.LabelFor(x => x.DictionaryCode): @Html.TextBoxFor(x => x.DictionaryCode, new TextBoxOptions() { IsEnabled = false })
@Html.LabelFor(x => x.DictionaryName): @Html.TextBoxFor(x => x.DictionaryName) @Html.LabelFor(x => x.IsEditableName): @Html.CheckBoxFor(x => x.IsEditable, new Dictionary() { { "disabled", "false" } })
}