gpt4 book ai didi

jquery - 单击按钮时,清除 jqgrid 并重新加载数据

转载 作者:行者123 更新时间:2023-11-30 23:55:47 26 4
gpt4 key购买 nike

我有一个jqgrid,它不在document.ready内。仅当我单击按钮时才会触发它。

  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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com