jqgridとツールバーフィルターを使用しています。デフォルトでは、データを入力するためのテキストボックスを提供します。ドロップダウン選択コンボボックスをサポートしており、そこから選択する値のリストを提供できますか?
JqGridのすべての種類の並べ替えには、いくつかの 共通ルール があります
{
name: 'Category', index: 'Category', width: 200, formatter:'select',
stype: 'select', searchoptions:{ sopt:['eq'], value: categoriesStr }
}
ここで、categoriesStr
は次のように定義されます
var categoriesStr = ":All;1:sport;2:science";
ここでは、標準の「1:sport; 2:science」の値に加えて、列をフィルタリングしない「:All」文字列が挿入されます。もちろん、「:」または「:Select ...」などを使用できます。
[〜#〜] updated [〜#〜]:あなたの質問が面白く、 デモ になりました。対応する列を含むテキストに基づいて、検索ツールバーまたは高度な検索ダイアログで使用できる選択コンボボックスを構築する方法を示します 。 1つの列に対して、さらに jQuery UI autocomplete を使用します。コードを変更して、オートコンプリートのさまざまな強力なオプションを使用できます。コードのコードは次のとおりです。
var mydata = [
{id:"1", Name:"Miroslav Klose", Category:"sport", Subcategory:"football"},
{id:"2", Name:"Michael Schumacher", Category:"sport", Subcategory:"formula 1"},
{id:"3", Name:"Albert Einstein", Category:"science", Subcategory:"physics"},
{id:"4", Name:"Blaise Pascal", Category:"science", Subcategory:"mathematics"}
],
grid = $("#list"),
getUniqueNames = function(columnName) {
var texts = grid.jqGrid('getCol',columnName), uniqueTexts = [],
textsLength = texts.length, 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']
}
}
);
};
grid.jqGrid({
data: mydata,
datatype: 'local',
colModel: [
{ name:'Name', index:'Name', width:200 },
{ name:'Category', index:'Category', width:200 },
{ name:'Subcategory', index:'Subcategory', width:200 }
],
sortname: 'Name',
viewrecords: true,
rownumbers: true,
sortorder: "desc",
ignoreCase: true,
pager: '#pager',
height: "auto",
caption: "How to use filterToolbar better locally"
}).jqGrid('navGrid','#pager',
{edit:false, add:false, del:false, search:false, refresh:false});
setSearchSelect('Category');
setSearchSelect('Subcategory');
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:"cn"});
これは、あなたの望むことですか?
[〜#〜] updated [〜#〜]:もう1つのオプションは、 select2 プラグインを使用することです。ドロップダウンの利点とオートコンプリートによる快適な検索。デモ( this one および this one )およびコードについては、 答え および this one (デモを参照)を参照してください例。
UPDATED 2: 答え には、jqGrid 4.6/4.7または 無料jqGrid 4.8 。
同様の状況がありました。上記のOlegの優れた例のおかげで、問題はほとんど解決しました。わずかな改善が必要でした。私のグリッドは、ページあたり10行、約40行のloadonceグリッドです。上記で使用したgetColメソッドは、現在のページの列値のみを返しました。しかし、データセット全体で一意の値をフィルターに入力したかったのです。したがって、関数getUniqueNamesにわずかな変更を加えます。
var getUniqueNames = function(columnName) {
// Maybe this line could be moved outside the function
// If the data is really huge then the entire segregation could
// be done in a single loop storing each unique column
// in a map of columnNames -> unique values
var data = grid.jqGrid('getGridParam', 'data');
var uniqueTexts = [], text, textsMap = {}, i;
for (i = 0; i < data.length; i++) {
text = data[i][columnName];
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);
}
}
// Object.keys(textsMap); Does not work with IE8:
return uniqueTexts;
}
私はこれを自分でやった。ハックのように少し感じましたが、うまくいきます!
次に、値が変更されたときにグリッドのリロードを処理するonchange関数を作成しました。
$('#myGrid').jqGrid('navButtonAdd', '#myGrid_toppager', {
caption: "<select id='gridFilter' onchange='ChangeGridView()'><option>Inbox</option><option>Sent Messages</option></select>",
title: "Apply Filter",
onClickButton: function () {
}
});
function ChangeGridView() {
var gridViewFilter = $("#gridFilter").val();
$('#myGrid').setGridParam({ datatype: 'json', url: '../../Controller/ActionJSON', postData: { msgFilter: gridViewFilter } });
$('#myGrid').trigger("reloadGrid");
};
お役に立てれば!
カテゴリは列名です。
loadComplete: function () {
$("#" + TableNames).setColProp('Category', {
formatter: 'select', edittype: "select",
editoptions: { value: "0:MALE;1:FEMALE;2:other;" }
});
},