1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- @model EMIS.ViewModel.SystemView.AnnouncementTypeView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "TypeEdit";
- }
- <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("TypeEdit")</div>
- </div>
- <div class="search_list popupWindowContent">
- <table cellpadding="0" cellspacing="0" id="departmenttable">
- <tr>
- <td>@Html.LabelFor(x => x.No):
- </td>
- <td>@Html.TextBoxFor(x => x.No)
- </td>
- <td>@Html.LabelFor(x => x.Name):
- </td>
- <td>@Html.TextBoxFor(x => x.Name)
- </td>
- </tr>
- <tr>
- <td>@Html.LabelFor(x => x.Description):
- </td>
- <td colspan="3">@Html.TextAreaFor(x => x.Description, new Dictionary<string, string> { { "style", "width:500px;" } })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
- @section scripts{
- <script type="text/javascript">
- function AnnouncementType_Save() {
- $(document.forms[0]).submit();
- }
- </script>
- }
|