我使用jqGrid
与free-jqGrid 4.13
loadonce: true;
我想做的事情是我遇到过几次:
我想保存网格的状态(没有数据);
这意味着设置(例如当前页面的数量),过滤用户应用的内容以及过滤器工具栏中的文本
然后加载并将此数据应用到网格中。
jqGrid是一个非常强大的工具,但像这样的东西似乎很难实现。
经过几个小时的工作后,我想出了一个复杂的解决方案;它工作正常,但它不是一个很好的解决方案imho:// in this example i am using the "window unload" event,
// because i want the filters to be saved once you leave the page:
$(window).on("unload", function(){
// i have to access the colModel in order to get the names of my columns
// which i need to get the values of the filter-toolbar textboxes later:
var col_arr = $("#list").jqGrid("getGridParam", "colModel");
// my own array to save the toolbar data:
var toolbar_search_array = [];
for(var i = 0, max = col_arr.length; i < max; i++)
{
// only saving the data when colModel's "search" is set to true
// and value of the filterToolbar textbox got a length
// the ID of the filterToolbar text-input is "gs_" + colModel.name
if(col_arr[i].search && $("#gs_" + col_arr[i].name).val().length)
{
toolbar_search_array.push({ name: col_arr[i].name, value: $("#gs_" + col_arr[i].name).val() });
}
}
// putting everything into one object
var pref = {
// 1. toolbar filter data - used to fill out the text-inputs accordingly
toolbar : toolbar_search_array,
// 2. postData - contains data for the actual filtering
post : $("#list").jqGrid("getGridParam", "postData"),
// 3. settings - this data is also included in postData - but doesn't get applied
// when using 'setGridParam'
sortname: $('#list').jqGrid('getGridParam', 'sortname'),
sortorder: $('#list').jqGrid('getGridParam', 'sortorder'),
page: $('#list').jqGrid('getGridParam', 'page'),
rowNum: $('#list').jqGrid('getGridParam', 'rowNum')
};
//saving in localStorage
localStorage.setItem("list", JSON.stringify( pref ));
});
用于文档就绪闭包,例如
var localsave = JSON.parse(localStorage.getItem("list"));
// these settings are also saved in postData,
// but they don't get applied to the grid when setting the postData:
$('#list').jqGrid('setGridParam', {
sortname: localsave.sortname,
sortorder: localsave.sortorder,
page: localsave.page,
rowNum: localsave.rowNum
});
// this applies the filtering itself and reloads the grid.
// it's important that you don't forget the "search : true" part:
$("#list").jqGrid("setGridParam", {
search : true,
postData : localsave.post
}).trigger("reloadGrid");
// this is loading the text into the filterToolbar
// from the array of objects i created:
console.log(localsave.toolbar);
for(i = 0, max = localsave.toolbar.length; i < max; i++)
{
$("#gs_" + localsave.toolbar[i].name).val( localsave.toolbar[i].value );
}
我觉得奇怪postData
包含了所有必要的数据但是不可能应用这些数据;至少据我所知。
应用所有过滤器和分页数据真是不方便吗?或者我错过了什么? 为什么不能这么简单:
// saving:
var my_save = $("#list").jqGrid("getGridParam", "postData");
// loading:
$("#list").jqGrid("setGridParam", {
search : true,
postData : my_save
}).trigger("reloadGrid");
感谢您提供任何帮助和/或建议!
答案 0 :(得分:1)
the demo提供了一个实施示例。方法searchOperators: true
相对较长。另一方面,代码仍未满。如果使用选项filterToolbar
,则不会恢复操作数的状态。我想重写postData
方法的许多部分,以便更轻松地保存/恢复过滤器工具栏的状态,或者根据更改的forceClientSorting: true
进行刷新。这只是时间的问题,仅此而已。你所描述的是接近功能filterToolbar
,这在jqGrid 4.7的原始代码中很难实现,但在我重写了服务器响应的大部分处理之后很容易实现。同样的问题是filterToolbar
的代码。 {{1}}的更改仍在我的TODO列表中,我很快就会做出相应的更改。