List.cshtml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. @model EMIS.ViewModel.ExaminationManage.ExaminationNoticeSettingView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. @{
  5. ViewBag.Title = "List";
  6. }
  7. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  8. @using (Ajax.BeginForm(new AjaxOptions
  9. {
  10. OnSuccess = "EMISFunction.FormSuccess",
  11. OnBegin = "EMISFunction.FormSubmit",
  12. OnComplete = "EMISFunction.FormComplete"
  13. }))
  14. {
  15. <div class="p_title">
  16. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;"></div>
  17. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("List")</div>
  18. </div>
  19. <div class="search_list">
  20. <table cellpadding="0" cellspacing="0" id="planApplicationtable">
  21. <tr>
  22. <td>@Html.LabelFor(x => x.Notice):
  23. </td>
  24. <td>@Html.TextAreaFor(x => x.Notice, new Dictionary<string, object> { { "style", "width: 90%;" } })
  25. </td>
  26. </tr>
  27. </table>
  28. </div>
  29. }
  30. </div>
  31. @section scripts{
  32. <script type="text/javascript">
  33. function ExaminationNoticeSetting_Set() {
  34. $(document.forms[0]).submit();
  35. }
  36. </script>
  37. }