1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @section scripts{
- <script type="text/javascript">
- var nonSelect = "@DropdownList.PLEASE_SELECT";
- function GenerateChargeAgainst_Submit() {
- EMISFunction.FormSubmit();
- $.post(CMS_SystemConfig.VirtualDirectoryPath + '/WorktimeAdjustment/GenerateChargeAgainst',
- { schoolyearID: $("#ddlSchoolyear").combobox("getValue") },
- function (data) {
- EMISFunction.FormSuccess(data);
- EMISFunction.FormComplete();
- });
- }
- </script>
- }
- @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("GenerateChargeAgainst")</div>
- </div>
- <div class="search_list">
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td><label>学年学期:</label>
- </td>
- <td>@Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/YearsDropdownListBanid"), ID = "ddlSchoolyear", Name = "ddlSchoolyear", SelectedValue = BaseExtensions.GetCurrentSchoolYearID() })
- </td>
- </tr>
- </table>
- </div>
- }
|