我有一个不在 document.ready 中的 jqgrid。只有当我单击按钮时才会触发它。

  function getData{
    DataHandler.getTasks(locName,{callback:function(data){
    jQuery("#TaskTable").jqGrid(
                {
    datatype : "local",
    data : resultSet,
    height : 250,
    width : 960,
    sortable : false,
    ignoreCase : true,
    sortorder : "desc",
        //rest of the table contents like colname and colmodel
     });

    }, errorHandler:function(){

        },async:false

    });

我想在每次单击按钮时清除网格,以便删除已经存在的数据并重新加载。这样做有什么帮助吗?我应该在哪里准备好文档内的清晰网格或单击按钮?

谢谢

最佳答案

假设标记为:

 <table id='myGrid' />

您可以使用以下代码从服务器清除和加载新数据:
function loadTable() {
$('#myGrid').jqGrid('GridUnload');  //this does the work of clearing out the table content and loading fresh data
$('myGrid').jqGrid({
    url: 'url goes here',
    dataType: 'json',
    jsonReader: {
        root: 'Data',
        page: 'CurrentPage',
        total: 'TotalPage',
        records: 'TotalRecords',
        repeatitems: false
    },
    onSelectRow: editRow
});

}

您还可以查看以下 link 以获取更多信息。

关于jquery - 单击按钮,清除 jqgrid 并重新加载数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16103956/

10-13 06:14