9

時々、私はいくつかの小さなものを簡単に手に入れることができませんでした.

今日、私の問題は、フィルターツールバーを使用して検索していたという点で JQgrid を使用していることです。

正常に動作していますが、必要なのは検索が大文字と小文字を区別することだけです。

例:「あ」

私が与えると、アントニーの結果が表示されます。しかし、「a」を指定すると、大文字と小文字を区別する方法が何も表示されません。

これが私のコードです:

<script type="text/javascript">
$(document).ready(function () {
    var lastsel3;
    var cl;
    var a = new Date();
    var QColName = a.getFullYear();
    var Q4ColName = (a.getFullYear()) + 1;
    var json_string = document.getElementById("hdntxt").value;

    if (json_string.length > 0) {
        var search_result = $.parseJSON(json_string);
    }
    jQuery("#gvLockHistory").jqGrid({
        contentType: "application/json; charset=utf-8",
        height: 'auto',
        width: '480',
        gridview: true,
        datatype: "local",
        data: search_result,
        colNames: ['Type', 'Month', 'Action'],
        colModel: [
        { name: 'LockType', index: 'LockType', editable: false, sortable: true, align: 'center',width:158 },
        { name: 'MonthYearStringValue', index: 'MonthYearStringValue', editable: false, sortable: false, align: 'center', width: 157 },
        { name: 'IsActive', index: 'IsActive', editable: true, align: 'center', sortable: false, search: false, width: 150 }
        ],
        rowNum: 8,
        pager: '#pager',
        rowList: [8, 10, 20, 30],
        multipleSearch: true,
        multipleGroup: true,
        shrinkToFit: false,
        viewrecords: true,
        caseSensitive: false,
        sortorder: "desc",
        //editurl: "server.php",
        gridComplete: function () {
            var ids = jQuery("#gvLockHistory").jqGrid('getDataIDs');
            for (var i = 0; i < ids.length; i++) {
                cl = ids[i];
                //be = "<input class='btn btn-mini' type='button' value='Unlock' onclick=\"unlock('" + cl + "');\"  />";
                be = "<input class='btn btn-mini' type='button' value='Unlock' onclick=\"unlock('" + cl + "');\"  />";
                jQuery("#gvLockHistory").jqGrid('setRowData', ids[i], { IsActive: be });

            }
        }
    });

これは、大文字と小文字を区別しないようにするためにネットで検索しましたが、機能しません

    $("#gvLockHistory").filterToolbar({ stringResult: true, searchOnEnter: false,defaultSearch:"cn"});


});

よろしくお願いします。また、フィルター セクションに表示する必要があるプレース ホルダーについても忘れないでください。

4

2 に答える 2

26

比較的新しいバージョンの jqgrid を使用している場合は、次のオプションを設定して検索で大文字と小文字を区別しないようにすることができます。

ignoreCase: true

それが役に立てば幸い。

于 2012-11-24T14:43:08.387 に答える
12

ignoreCase: truejqGrid オプションで設定する必要があります。@ f01の答えはうまくいきませんでした。jqGrid バージョン 4.6.0 を使用しています。

grid.jqGrid({
    datatype: "local",
    editurl: 'clientArray',
    caption: "Values",
    ignoreCase: true, //By default the local searching is case-sensitive. 
                      //To make the local search and sorting not 
                      //case-insensitive set this options to true

    colNames: ["", "", ""],
    colModel: [{
        name: "value",
        // .. more stuff
});
于 2014-08-22T19:48:52.337 に答える