12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @model EMIS.ViewModel.MinorManage.MinorSetting.MinorConditionView
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "Edit";
- }
- @section scripts{
- <script src="~/Scripts/Business/MinorManage/MinorSetting/MinorConditionEdit.js"
- type="text/javascript"></script>
- <script type="text/javascript">
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Ajax.BeginForm(new AjaxOptions
- {
- OnSuccess = "EMISFunction.FormSuccess",
- OnBegin = "EMISFunction.FormSubmit",
- OnComplete = "EMISFunction.FormComplete"
- }))
- {
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
- </div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Edit")</div>
- </div>
- <div class="search_list" style=" min-width:0px">
- @Html.HiddenFor(x => x.MinorConditionID)
- <table cellpadding="0" cellspacing="0" id="minorConditiontable">
- <tr>
- <td>
- @Html.LabelFor(x => x.Title):
- </td>
- <td colspan="3">
- @Html.TextBoxFor(x => x.Title, new TextBoxOptions()
- {
- IsRequired = true
- },
- new Dictionary<string, string> { { "style", "width:75%;" } })
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.RecordStatus):
- </td>
- <td colspan="3">
- @Html.CheckBoxFor(x => x.IsEnable)
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|