123456789101112131415161718192021222324252627282930313233343536373839 |
- var url = CMS_SystemConfig.VirtualDirectoryPath + "/StudentEvaluationEnter/EnterEdit";
- var mnu = "";
- //加载
- $(function () {
- mnu = $.SystemGeneral.getUrlParam("MNU");
- })
- //刷新
- function reload() {
- $("#dgStudentEvaluationEnterList").cmsXDataTable("load", $.getDataGridParams("dgStudentEvaluationEnterList"));
- }
- //获取选中的数据
- function validChoose() {
- var d = [];
- $.each($("#dgStudentEvaluationEnterList").cmsXDataTable("getSelections"), function (index) {
- d.push(this.EvaluationStudentID);
- });
- return d;
- }
- //点击进入评价
- function enterEdit(rowindex, rowdata) {
- var redirectTo = url + "?evaluationStudentSettingID=" + rowdata.EvaluationStudentSettingID + "&MNU=" + mnu;
- $.popupTopWindow('教学质量评价活动信息', redirectTo, (window.screen.availWidth * 0.6), (window.screen.availHeight * 0.65), reload, null);
- }
- //设置列颜色为红色
- function SetRedColumn(index, row, value) {
- return " <span style=\"color: red;\">" + value + "</span>";
- }
- //导出Excel
- function StudentEvaluationEnter_Export() {
- $("#formQuery").submit();
- }
|