我已根据此 example创建了一个过滤器工具栏。我有一个奇怪的问题;这仅在我设置了firebug断点时有效,否则,下拉列表仅显示“All”。网格设置为数据类型:'json',loadonce:true。还有一点;这个网格也有一个子网格。关于如何使这个工作的任何想法?
grid = $("#dealsgrid"),
getUniqueNames = function(columnName) {
var texts = grid.jqGrid('getCol', columnName);
var uniqueTexts = [];
var textsLength = grid.jqGrid('getGridParam','data');
var text, textsMap = {}, i;
for (i = 0; i < textsLength; i++) {
text = texts[i];
if (text !== undefined && textsMap[text] === undefined) {
// to test whether the texts is unique we place it in the map.
textsMap[text] = true;
uniqueTexts.push(text);
}
}
return uniqueTexts;
},
buildSearchSelect = function(uniqueNames) {
var values = ":All";
$.each(uniqueNames, function() {
values += ";" + this + ":" + this;
});
return values;
},
setSearchSelect = function(columnName) {
grid.jqGrid(
'setColProp',
columnName,
{
stype : 'select',
searchoptions : {
value : buildSearchSelect(getUniqueNames(columnName)),
sopt : [ 'eq' ]
}
});
};
我在声明网格之后,我的列模型看起来像这样:
colModel:[
{name:'CM',index:'CM', width:50,editable:false},
{name:'DealNo',index:'DealNo',width:75,editable:false,editoptions:{readonly:true, size:10},search:true, stype:'text', searchoptions: { sopt: ['eq']}},
{name:'KeyDate',index:'KeyDate',width:100, search:false, align:"right",formatter:'date'},
{name:'VendorNo',index:'VendorNo', width:75,search:true},
{name:'VendorName',index:'VendorName', width:100,search:true},
{name:'ItemQty',index:'ItemQty', width:75,search:false},{name:'StartDate',index:'StartDate',width:100,align:"right",formatter:'date',search:false},
{name:'EndDate',index:'EndDate',width:100, align:"right",formatter:'date',search:false},
{name:'ActiveStartDate',index:'ActiveStartDate',width:100, align:"right",formatter:'date',search:false, sorttype:"date", editable:true,editoptions:{size:10}}, {name:'ActiveEndDate',index:'ActiveEndDate',width:100,align:"right",formatter:'date',search:false, sorttype:"date",editable:true,editoptions:{size:10}},
{name:'DealType',index:'DealType', width:75,search:false}
],
最后,我打电话来创建filterToolBar并填充下拉列表
setSearchSelect('CM');
grid.jqGrid('setColProp', 'Name', {
searchoptions : {
sopt : [ 'cn' ],
dataInit : function(elem) {
$(elem).autocomplete({
source : getUniqueNames('Name'),
delay : 0,
minLength : 0
});
}
}
});
grid.jqGrid('filterToolbar', {
stringResult : true,
searchOnEnter : true,
defaultSearch : "eq"
});
任何建议都将不胜感激。 感谢
答案 0 :(得分:1)
删除了我的旧答案现在我们知道你的函数正在返回一些东西(如果你在它上面放了一个断点)。可能是在调用getUniqueNames之前你的网格还没有加载数据?这解释了如果你在它上面放置一个断点,它就有更多的时间在调用getUniqueNames之前加载数据。
因此,如果您在gridComplete中调用setSearchSelect,或者甚至是loadComplete,那么它应该没问题。也许您甚至必须将网格的async属性设置为false。我需要用我自己的代码检查一下,所以我可以为你提供一个例子。我会在早上做第一件事。与此同时,您可以根据上述信息进行一些调整,亲自尝试。
$('#yourgrid').jqGrid({
...,
async: false,
loadComplete/gridComplete: function() { setSearchSelect('CM'); }
});