jqsuite 中使用jqgrid参数

jqsuite服务器控件有些参数查文档不知道怎么配置参数,所以研究了两种方法。

                 $.fn.tmp =  $.fn.jqGrid;
                 $.fn.jqGrid = function (pin) {
                     pin.footerrow = true;
                     return $.fn.tmp.apply(this,arguments);
                 };
                 $.extend($.fn.jqGrid, $.fn.tmp);


 

    $.jgrid.defaults.footerrow = true;
                 $.jgrid.defaults.beforeSelectRow = function (rowId, e) {
                     var isc = contains(ids, rowId);
                     var ipts = $(this).find("tr[id=" + rowId + "] input");
                     
                     if (isc && ipts.length !== 0) {
                         ipts.attr("checked", false);
                     }
                     return !isc;
                 };


你可能感兴趣的:(javascript)