我的JQGrid柱状图

    colNames: ['Job ID', 'MailId','Save'],
    colModel: [
                { name: 'JobId', index: 'JobId', width: 120, align: 'left', editable: true },
                { name: 'MailId', index: 'MailId', width: 150, align: 'left', editable: true },

                {
                    name: 'Save', index: 'Save', width: 100, sortable: false,
                    formatter: function (cellvalue, options, rowObject) {
                        return "<a href='#' id="saveLinkId">Save</a>";

                    }
                }


我在JQGrid单元的末尾创建“保存链接”按钮。

单击行中的链接按钮时,需要将单击的行的JobId和MailID传递给jquery函数。如何执行此操作?

最佳答案

在上面给出的示例中,formatter函数中的rowObject参数将保存该行中的所有值。因此可以将rowObject.JobId用作JobId,将rowObject.MailId用作MailId。

10-05 20:41