2

自定义 jQGrid 发布操作中的答案使用 appendTo() 将自定义按钮添加到操作结束按钮。

如何在操作按钮之前添加按钮?

我试图用 before() 和 prepend() 替换 appendTo() 但在这一切按钮都消失了。

4

1 回答 1

7

我尝试使用prependTo而不是appendTo所有的作品。确切地说是我用过

loadComplete: 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"));
    });
}

对应的demo显示

在此处输入图像描述

我另外添加了CSS

.ui-inline-custom.ui-state-hover span { margin: -1px; }

对于悬停的小改进对应于已经在 jqGrid 4.3.2 中实现的错误修复。

更新:当前版本的免费 jqGrid支持实现自定义按钮的简单方法。请参阅演示

于 2012-04-16T18:59:20.933 回答