我有一个不在 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
});
我想在每次单击按钮时清除网格,以便删除已经存在的数据并重新加载。这样做有什么帮助吗?我应该在哪里准备好文档内的清晰网格或单击按钮?
谢谢