的jqGrid如何显示服务器端的消息(jqgrid how to show server side

2019-08-07 06:29发布

我使用jqGrid显示在表格格式,数据使用JSPservlet

编辑

我要像操作时,显示来自服务器的错误, insert, update, delete ,执行。 (datatype: "xml")

jqGrid的

jQuery("#list10_d").jqGrid({
                height:250,
                width:600,
                url:'Assignment?action=Assign',
                datatype: "xml",
                colNames:['Sr. No.','PID',  'DATE',  'EMPID'],
                colModel:[{name:'srNo',index:'srNo', width:30,sortable:false},
                           {name:'PID',index:'PID',width:0, sortable:true,editable:false},
                           {name:'DATE',index:'DATE', width:75,sortable:true,editable:true,editoptions: { dataInit: function(el) { setTimeout(function() { $(el).datepicker({dateFormat:"dd-M-yy",showButtonPanel: true,changeYear: true,changeMonth: true}).attr('readonly','readonly'); }, 200); }}},
                           {name:'EMPID',index:'EMPID', width:150,sortable:true,editable:true}
                           ],
                rowNum:10,
                rowList:[10,20,50,100],
                pager: '#pager10_d',
                sortname: 'PID',
                viewrecords: true,
                sortorder: "asc",

                    },
                multiselect: true,
                editurl: "Assignment?action=Edit",
                caption:"Assignment"
            } ).navGrid('#pager10_d',{edit:false,add:true,del:false,addtext:'Assign '},
                    {},
                    {modal:true,jqModal: false,closeOnEscape:true,savekey: [true,13],closeOnEscape:true, recreateForm: true,width:500,mtype:'POST', url: 'Assignment',editData:{action: 'Assign',PID: function () {return PID;}}, 
                afterSubmit: function (response) {
                        alert('After Submit \n' +'statusText: '+ response.statusText);
                        var myInfo = '<div class="ui-state-highlight ui-corner-all">'+
                                     '<span class="ui-icon ui-icon-info" ' +
                                         'style="float: left; margin-right: .3em;"></span>' +
                                     response.statusText + 'Inserted'+
                                     '</div>',
                             $infoTr = $("#TblGrid_" + $.jgrid.jqID(this.id) + ">tbody>tr.tinfo"),
                            $infoTd = $infoTr.children("td.topinfo"); 
                        $infoTd.html(myInfo);
                        $infoTr.show();

                        // display status message to 3 sec only
                        setTimeout(function () {
                            $infoTr.slideUp("slow");
                        }, 5000);

                        return [true, "", ""]; // response should be interpreted as successful
                    },
                    errorTextFormat: function (response) {
                    alert('Error Text Format: \n' +'statusText: '+ response.statusText);

                        return '<span class="ui-icon ui-icon-alert" ' +
                                     'style="float:left; margin-right:.3em;"></span>' +
                                    response.statusText;},
                    {closeOnEscape:true, recreateForm: true,mtype: 'POST',url: 'Assignment',delData: {action: 'Delete',PID: function () {return PID;}}},
                    {}) ;

servlet代码

if(request.getParameter("action").equalsIgnoreCase("Assign"))
        {
            PID = request.getParameter("PID");
            String DATE= request.getParameter("DATE");
            String EMPID= request.getParameter("EMPID");

            String query = "insert into ASSIGN(PID,DATE,EMPID) values('"+ PID +"','"+ DATE +"','"+ EMPID"')";
            boolean b = insert.InsertData(query);
            if(b)
            {
                System.out.println("New record added successfully! : "+query);
                response.setContentType("text/xml");
                response.setCharacterEncoding("UTF-8");

                //response.sendError(200, "success");
                response.setStatus(200, "Inserted successfully");

            }
            else
            {
                System.out.println("Failed to add Record! : "+query);
                response.setContentType("text/xml");
                response.setCharacterEncoding("UTF-8");

                //response.sendError(399, "not Inserted successfully");   
                response.setStatus(404, "Error while inserting");   
            }           
        }//INSERT

对于上面的例子

  • inserting从jqGrid的记录,然后No message is shown在网格如果记录inserted successfully
  • error Status: 'Unauthorized'. Error code: 401 error Status: 'Unauthorized'. Error code: 401 ,如果失败的servlet在数据库中插入记录所示。

我的问题是:

  • inserting从jqGrid的记录,如果插入记录然后我应该如何显示消息给该数据被插入到用户的信息。
  • 我应该怎样给邮件用户该Error while inserting (其error code我应该使用这个?)

提前致谢.....

Answer 1:

我建议老答案 ,并在另一个使用的网格形式(现有隐藏的行tr.tinfo ),以显示这不是错误信息。 因为答案是不为人所熟知我在这里重复相同的信息,但我会尽力解释所有的更加详细。

首先,它要了解哪些元素有标准的编辑/添加的形式是非常重要的。 使用IE或Chrome,Firebug的或许多其他工具的开发工具可以很容易发现,通过创建的jqGrid添加/编辑表单包含在窗体的顶部两个隐藏列

第一行会每默认使用作为错误信息的地方。 我们可以使用errorTextFormat定制信息一点点。

如果服务器响应包含错误HTTP状态代码(> = 400),则回调errorTextFormat将被调用,您可以使用

errorTextFormat: function (response) {
    return response.responseText;
}

或类似的东西

errorTextFormat: function (response) {
    return '<span class="ui-icon ui-icon-alert" ' +
                 'style="float:left; margin-right:.3em;"></span>' +
                response.responseText;
}

显示例如错误消息

以相同的方式可以使用afterSubmit回调编辑的提交之后显示状态消息/增加的数据,如果服务器响应包含成功HTTP状态代码 。 实施afterSubmit可能是有关以下

afterSubmit: function (response) {
    var myInfo = '<div class="ui-state-highlight ui-corner-all">'+
                 '<span class="ui-icon ui-icon-info" ' +
                     'style="float: left; margin-right: .3em;"></span>' +
                 response.responseText +
                 '</div>',
        $infoTr = $("#TblGrid_" + $.jgrid.jqID(this.id) + ">tbody>tr.tinfo"),
        $infoTd = $infoTr.children("td.topinfo");
    $infoTd.html(myInfo);
    $infoTr.show();

    // display status message to 3 sec only
    setTimeout(function () {
        $infoTr.slideUp("slow");
    }, 3000);

    return [true, "", ""]; // response should be interpreted as successful
}

该代码将显示3秒的状态消息只ABD然后使用jQuery.slideUp动画来隐藏。 它看起来像

我希望这是你所需要的。



Answer 2:

我已经做了财产以后在编辑电话到我的服务器相似,所以我认为这将在一个非常类似的方式工作,以附加。

在编辑后的控制器/删除/添加通话,你会确定是否存在被传递到用户的消息,如果是通过JSON传递它(在你的情况下,XML)回馈到电网。

防爆

    if (infoDialogTrigger) { 
       return Json(new { success = true, showMessage = true, message = "Updating your Inventory and we are displaying this info box" }); 
    }//if
    else { 
       return Json(new { success = true, showMessage = false, message = "" }); 
    }//else

在你的jqGrid你有你的编辑/删除/添加功能:

    function EditCollectionItem (rowid, grid){
        $(grid).jqGrid('editGridRow', rowid,
        {
            viewPagerButtons: false,
            editData: { },
            afterComplete: function (response) {
                var DialogVars = $.parseJSON(response.responseText); //parse the string that was returned in responseText into an object
                //if there was a failure with the update, or there was information to pass to the user
                if (!DialogVars.success || DialogVars.showMessage) {
                    alert(DialogVars.message);
                }
            } //afterComplete
        }); //$(grid).jqGrid('editGridRow
    }//function EditCollectionItem (rowid, grid){

所以在上面的例子中,如果手术失败了,你可以显示一个消息success = false ,或者如果操作成功,但你想传递一些额外的信息给用户,你可能也与sucess = true && showMessage = true

这是编辑的JSON示例但其概念和逻辑应该是XML和加/删除操作是相同的。



文章来源: jqgrid how to show server side messages