0

我正在使用带有自定义按钮列的 Jqgrid。我使用 jqgrid 的加载完成方法来填充按钮。在我在加载完成中使用的代码下方。

var grid =  $("#grid"),
             iCol = getColumnIndexByName(grid,'custom'); // 'custom' - name of the actions column
             grid.children("tbody")
                    .children("tr.jqgrow")
                    .children("td:nth-child("+(iCol+1)+")")
                    .each(function() {
                     $("<div>",
                            {
                                title: "button1",
                                mouseover: function() {
                                    $(this).addClass('ui-state-hover');
                                },
                                mouseout: function() {
                                    $(this).removeClass('ui-state-hover');
                                },
                                click: 
                                handle your click function here
                                }
                          ).css({"margin-left": "5px", float:"left"})
                           .addClass("ui-pg-div ui-inline-save")
                           .attr('id',"customId")
                           .append('<span class="ui-button-icon-primary ui-icon ui-icon-disk"></span>')
                           .appendTo($(this).children("div")); 
                )};

var getColumnIndexByName = function(grid,columnName) {
                var cm = grid.jqGrid('getGridParam','colModel'), i=0,l=cm.length;
                for (; i<l; i+=1) {
                    if (cm[i].name===columnName) {
                        return i; // return the index
                    }
                }
                return -1;
            };

它在所有行中显示按钮。但我想让它根据第一列和第二列的值仅显示在几行中。有什么简单的方法可以让我获得第一列和第二列的值,或者我需要再次遍历“tbody”并检索结果?请帮帮我。

4

1 回答 1

1

您应该检查自定义格式化程序。

在列中,您可以在 colmodel 中定义为网格的每一行触发的格式化程序。然后您可以执行以下操作:

function formatterName(cellvalue, rowid, rowObject)
{
    if(rowObject[1] == "YourValue" && rowObject[2] == "YourValue"){ // index for choosing which column to check
         // run code for displaying buttons in the columns that matches your criteria
    }
}
于 2012-09-04T15:35:02.147 回答