jquery jqgrid日期搜索不起作用

时间:2013-03-19 16:25:20

标签: jquery asp.net jqgrid

我已经实现了jqgrid jquery并应用了搜索日期,但没有过滤记录。 以下是我的代码段。

// jquery jqgrid part
      { name: 'DateUpdated', index: 'DateUpdated',
                    sorttype: 'date'
                , sortable: true
                , datefmt: 'm/d/Y', width: 220, formatter: ndateFormatter,
                    formatoptions: { srcformat: 'm/d/Y', newformat: 'm/d/Y' },
                    searchoptions: { sopt: ['eq'] }
                }
//    ------------------------------
    function ndateFormatter(cellval, opts, rwdat, _act) {

                                    var time = cellval.replace(/\/Date\(([0-9]*)\)\//, '$1');
                                    var date = new Date();
                                    date.setTime(time);
                                    return (date.getMonth() + 1) + "/" + date.getDate() + "/" + date.getFullYear();

                                }

我还在搜索选项中应用了datepicker,但它没有使用日期进行过滤。

0 个答案:

没有答案