1234567891011121314151617181920212223242526272829303132333435 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "AppraiseReport";
- string loginUserID = ViewBag.LoginUserID;
- var dataRangeID = ViewBag.DataRangeID;
- }
- @section scripts{
- <script src="../../Scripts/Business/StudentManage/StudentProfile/StudentAppraiseReport.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- var graduateAppraise = "@((int)EMIS.ViewModel.CF_StudentAppraiseReport.Graduate)";
- var postPracticeAppraise = "@((int)EMIS.ViewModel.CF_StudentAppraiseReport.PostPractice)";
- var universityName = '@EMIS.Utility.RSL.Get("UniversityName")';
- var curWwwPath = window.document.location.href;
- var pathName = window.document.location.pathname;
- var pos = curWwwPath.indexOf(pathName);
- var localhostPaht = curWwwPath.substring(0, pos);
- var loginUserID = '@loginUserID';
- var dataRangeID = '@dataRangeID';
- </script>
- }
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_StudentAppraiseReport, new DropdownListOptions
- {
- ID = "DictionaryStudentAppraiseReport",
- Name = "DictionaryStudentAppraiseReport",
- BindType = DropdownListBindType.PleaseSelect,
- SelectedValue = (int)(int)EMIS.ViewModel.CF_StudentAppraiseReport.Graduate,
- OnSelect = "StudentAppraiseReport"
- })
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <div class="search_list">
- <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute; left: 5px;"></iframe>
- </div>
- </div>
|