zoukankan      html  css  js  c++  java
  • easyui datagrid 单元格编辑保存

    要求分数和排序两列能编辑

        //查询该试卷题型的试题
        $('#allList1').datagrid({    
            url:app.approot+"paperRes/getPaperQuestionList/"+ptyid,
            handler:function(){ //接受改变的值
            $('#allList1').datagrid('acceptChanges');
            },  
            onBeforeEdit: function (rowIndex,rowData) {
             $("#selQuestionId").val(rowData.questionId);
            },
            onClickCell: onClickCell,
            onAfterEdit:function(rowIndex, rowData, changes){  // 第三个参数是改变的值
             // alert(changes.scoreItem);
              if(changes.questionNo!=undefined&&changes.questionNo!='undefined'){
                   $.post(app.approot+'paperRes/updateQuestionNo/'+rowData.paperId+
                           '/'+rowData.questionId+'/'+changes.questionNo,function(result){
                          if(result.msgid=="1"){  
                             $('#allList1').datagrid('reload');
                          }else{
                              $.messager.alert("操作提示",result.msg,"info"); 
                          }
                         
                      },"json");  
              }
              if(changes.scoreItem!=undefined&&changes.scoreItem!='undefined'){
                   $.post(app.approot+'paperRes/updateQuestionScoreItem/'+rowData.paperId+
                           '/'+rowData.questionId+'/'+changes.scoreItem,function(result){
                          if(result.msgid=="1"){
                              $('#allList1').datagrid('refreshRow', rowIndex);  
                          }else{
                              $.messager.alert("操作提示",result.msg,"info"); 
                              $('#allList1').datagrid('reload');
                          }
                         
                      },"json");  
              }
           
            }
    
            });
  • 相关阅读:
    面试遇到的问题汇总
    linux系统的安装和配置
    apache重写URL时,排除静态资源
    WordPress限制游客查看文章
    Mysql主从复制读写分离
    Postgres主从
    django-rest-framework-simplejwt
    JavaWeb项目部署到Linux服务器
    Centos8.2云服务器环境安装Tomcat8.5
    java的pdf转jpg
  • 原文地址:https://www.cnblogs.com/dingding0505/p/4250846.html
Copyright © 2011-2022 走看看