0

我有一个像这样的jqgrid

colNames: ['Name','Actions'],

 colModel: [

        { name: 'name', index: 'name', align: 'right', editable: true},
{ name: 'act', index: 'act', width: 75, align: 'center', sortable: false, formatter: 'actions',formatoptions: {keys: true,delbutton:false}}
],

现在我想添加一个自定义按钮以及动作格式化程序的编辑按钮。

我试过这个,似乎没有工作,任何猜测为什么?

gridComplete: function(){
    var ids = $("#grid").jqGrid('getDataIDs');
    for(var i=0;i < ids.length;i++){
        var cl = ids[i];
        alert(cl);
        be = "<input style='height:22px;' type='button' value='Edit' onclick=\"window.location.href='editItem.asp?ID="+cl+"'\"  />";

        $("#grid").jqGrid('setRowData',ids[i],{act:be});
    }   
},
4

2 回答 2

2

如果我理解正确您的要求,您将在这个这个旧答案中找到您问题的答案。

于 2012-07-07T11:27:46.890 回答
1

这是一个自定义格式化程序的示例(假设您使用您的项目 ID 设置“Actions”列的值):

<script>
    var myCustomFormatter = function(cellVal,options,rowObject) {
        return "<input style='height:22px;' type='button' value='Edit' onclick=\"window.location.href='editItem.asp?ID="+cellVal+"'\"  />";  
    };

    $("#yourTableID").jqGrid({
        ....
        colNames: [....,'Actions'],
        colModel: [
            ....
            { name: 'act', index: 'act', width: 75, align: 'center', sortable: false, formatter:myCustomFormatter}
        ],
        ....
    });

</script>

阅读有关自定义格式化程序的jqGrid 文档。

于 2012-07-06T14:53:44.717 回答