123456789101112131415161718192021222324 |
- @model EMIS.ViewModel.ScoreManage.ExaminationSuspensionView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "applyEdit";
- }
- <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 >
- @Html.HiddenFor(x => x.ExaminationSuspensionID)
- <table cellpadding="0" cellspacing="0" id="specialtytable">
- <tr>
- <td style="width:80px">@Html.LabelFor(x => x.Reason):
- </td>
- <td colspan="1">@Html.TextAreaFor(x => x.Reason,10,40, new TextBoxOptions() { IsEnabled = false })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|