1

是一个在 jQgrid 的 Actions 列中添加自定义图标的演示。在我的情况下,如果我添加 3 行 gridComplete 被调用 3 次。所以我在第一行获得 3 个自定义图标,在第二行获得 2 个,在第三行获得 1 个。无论如何我们可以添加基于行和列的自定义图标???

gridComplete: function () {
                var iCol = getColumnIndexByName(grid, 'act');
                $(this).find(">tbody>tr.jqgrow>td:nth-child(" + (iCol + 1) + ")")
                    .each(function() {
                        $("<div>", {
                            title: "Custom",
                            mouseover: function() {
                                $(this).addClass('ui-state-hover');
                            },
                            mouseout: function() {
                                $(this).removeClass('ui-state-hover');
                            },
                            click: function(e) {
                                alert("'Custom' button is clicked in the rowis="+
                                    $(e.target).closest("tr.jqgrow").attr("id") +" !");
                            }
                        }
                      ).css({"margin-right": "5px", float: "left", cursor: "pointer"})
                       .addClass("ui-pg-div ui-inline-custom")
                       .append('<span class="ui-icon ui-icon-document"></span>')
                       .prependTo($(this).children("div"));
                });
            }
4

2 回答 2

3

Look at the modified demo created for the answer. It uses jqGrid 4.4.4, but the same code (see the demo) works for jqGrid 4.5.2 too.

于 2013-09-18T19:05:28.530 回答
0

我认为该行存在错误:

$(this).find(">tbody>tr.jqgrow>td:nth-child(" + (iCol + 1) + ")")

应该

$(this).find("tbody>tr.jqgrow>td:nth-child(" + (iCol + 1) + ")")

(删除之前的“>” tbody

于 2013-09-18T17:42:06.760 回答