applyEdit.cshtml 922 B

123456789101112131415161718192021222324
  1. @model EMIS.ViewModel.ScoreManage.ExaminationSuspensionView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. @{
  5. ViewBag.Title = "applyEdit";
  6. }
  7. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  8. @using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" }))
  9. {
  10. <div >
  11. @Html.HiddenFor(x => x.ExaminationSuspensionID)
  12. <table cellpadding="0" cellspacing="0" id="specialtytable">
  13. <tr>
  14. <td style="width:80px">@Html.LabelFor(x => x.Reason):
  15. </td>
  16. <td colspan="1">@Html.TextAreaFor(x => x.Reason,10,40, new TextBoxOptions() { IsEnabled = false })
  17. </td>
  18. </tr>
  19. </table>
  20. </div>
  21. }
  22. </div>