我想在网格中的每一行添加一个按钮,它会打开一个新窗口。在这个非常丰富的控件中看不到这个功能。一定是遗漏了什么
答案 0 :(得分:16)
这是一个例子,来自jqGrid演示页面:
jQuery("#rowed2").jqGrid({
url:'server.php?q=3',
datatype: "json",
colNames:['Actions','Inv No','Date', 'Client', 'Amount','Tax','Total','Notes'],
colModel:[
{name:'act', index:'act', width:75,sortable:false},
{name:'id',index:'id', width:55},
{name:'invdate',index:'invdate', width:90, editable:true},
{name:'name',index:'name', width:100,editable:true},
{name:'amount',index:'amount', width:80, align:"right",editable:true},
{name:'tax',index:'tax', width:80, align:"right",editable:true},
{name:'total',index:'total', width:80,align:"right",editable:true},
{name:'note',index:'note', width:150, sortable:false,editable:true}
],
rowNum:10,
rowList:[10,20,30],
imgpath: gridimgpath,
pager: jQuery('#prowed2'),
sortname: 'id',
viewrecords: true,
sortorder: "desc",
gridComplete: function(){
var ids = jQuery("#rowed2").getDataIDs();
for(var i=0;i<ids.length;i++){
var cl = ids[i];
be = "<input style='height:22px;width:20px;' type='button' value='E' onclick=jQuery('#rowed2').editRow("+cl+"); ></ids>";
se = "<input style='height:22px;width:20px;' type='button' value='S' onclick=jQuery('#rowed2').saveRow("+cl+"); />";
ce = "<input style='height:22px;width:20px;' type='button' value='C' onclick=jQuery('#rowed2').restoreRow("+cl+"); />";
jQuery("#rowed2").setRowData(ids[i],{act:be+se+ce})
}
},
editurl: "server.php",
caption:"Custom edit " }
).navGrid("#prowed2",{edit:false,add:false,del:false});
您也可以使用custom formatter。
答案 1 :(得分:8)
当前最高答案将自定义按钮代码置于loadComplete中。它应该是 gridComplete 。自问题得到解答以来,API可能已经发生了变化。
答案 2 :(得分:6)
在colModel中,您可以通过以下代码
使用formatter进行格式化formatter:function (cellvalue, options, rowObject) {
return "<input type='button' value='somevalue' onclick='some_function'\>";
}
答案 3 :(得分:0)
此example可能会有所帮助。请参阅此wiki页面和Oleg的this answer。
答案 4 :(得分:0)
我正在使用jqgrid来显示联系人列表。我有一个名为“Role”的列,其中包含一个“定义”按钮,您可以单击它并将该联系人的角色重新定义为主要,次要,销售或其他。
最初,button元素通过XML发送到网格单元格,其中$ rowid是行的ID(PHP):
<cell><![CDATA[<button data-idx='{$rowid}' class='contact_role_button btn' title='Define Role...'>Define</button>]]></cell>
这在我在网格上设置autoencode: true
之前一直运行良好。将此选项设置为true,该列只显示html。
克雷格的回答表现出类似的行为,但略有不同的做法就是诀窍。我以为我会分享:
gridcomplete: function() {
var ids = $grid.getDataIDs();
for (var i=0;i<ids.length;i++){
var cl = ids[i],
button = '<button data-idx="'+cl+'" class="contact_role_button btn" title="Define Role...">Define</button>';
if (cl.substr(0,2) !== "jq") {
$('#'+cl).find('td[aria-describedby="list_role"]').html(button);
}
}
}
换句话说,setRowData方法不能将autoencode设置为true,但可以在gridcomplete事件中根据需要操作DOM。