我想创建一个包含连续自定义按钮的简单表。按下按钮时,我想弹出一个“警告”框。我已经阅读了一些这方面的帖子,例如: this post 和 this other post,我不明白为什么我的代码无效。按钮被绘制,但推动它们没有效果。
我在这里描述了三次尝试。
版本1.按钮点击永远不会触发:
$(document).ready(function(){
jQuery("#simpletable").jqGrid({
datatype: "local",
colNames:['A','B','Status'],
colModel:[
{name:'A',index:'A'},
{name:'B',index:'B'},
{name:'status',index:status}
],
data:[
{'A':2,'B':100,'status':"<button onclick=\"jQuery('#simpletable').saveRow('1', function(){alert('you are in')});\" >in</button>"},
{'A':1,'B':200,'status':"<button onclick=\"jQuery('#simpletable').saveRow('2', function(){alert('you are in')});\" >in</button>"},
],
caption: "Demo of Custom Clickable Button in Row",
viewrecords:true,
editurl:'clientArray',
});
});
Html代码:
<table id="simpletable"></table>
编辑8/2/12 - 自从我的原帖以来,我已经学到了一些东西,在这里我再描述了两次尝试。
版本2:我使用onCellSelect。这有效,但它不允许我在单元格中放置多个按钮。另外,我通过使用本文评论之一建议的格式选项使代码更好。
function status_button_maker_v2(cellvalue, options, rowObject){
return "<button class=\"ver2_statusbutton\">"+cellvalue+"</button>"
};
jQuery("#simpletablev2").jqGrid({
datatype: "local",
colNames:['A','B','Status'],
colModel:[
{name:'A',index:'A'},
{name:'B',index:'B'},
{name:'status',index:status,editable:true,formatter:status_button_maker_v2}
],
data:[
{'A':2,'B':100,'status':"In"},
{'A':1,'B':200,'status':"Out"}
],
onCellSelect:function(rowid,icol,cellcontent,e){
if (icol==2){
alert('My value in column A is: '+$("#simpletablev2").getRowData(rowid)['A']);
}else{
return true;
}
},
caption: "Demo of Custom Clickable Button in Row, ver 2",
viewrecords:true,
}); //end simpletablev2
标记:
<style>.ver2_statusbutton { color:blue;} </style>
<h3>simple table, ver 2:</h3>
<table id="simpletablev2"></table>
版本3:我尝试使用“{3}}解决方案,使用”.on“而不是弃用”.live“。这会导致按钮点击触发,但我不知道如何检索rowid。 w4ik也在努力解决这个问题,他发布说他已经解决了这个问题,但不是他是怎么做到的。我可以选择最后一行,但这将始终引用所选的上一行,因为该按钮具有优先权。
如果我能让它发挥作用,我更喜欢这种解决方案。
jQuery("#simpletablev3").jqGrid({
datatype: "local",
colNames:['A','B','Status'],
colModel:[
{name:'A',index:'A'},
{name:'B',index:'B'},
{name:'status',index:status,editable:true,formatter:status_button_maker_v3}
],
data:[
{'A':2,'B':100,'status':"In"},
{'A':1,'B':200,'status':"Out"}
],
caption: "Demo of Custom Clickable Button in Row, ver 3",
viewrecords:true,
onSelectRow: function(){},
gridComplete: function(){}
}); //end simpletablev3
$(".ver3_statusbutton").on(
{
click: function(){
//how to get the row id? the following does not work
//var rowid = $("#simpletablev3").attr('rowid');
//
//it also does not work to get the selected row
// this is always one click behind:
//$("#simpletablev3").trigger("reloadGrid");
rowid = $("#simpletablev3").getGridParam('selrow');
alert("button pushed! rowid = "+rowid);
}
});
标记:
<style>.ver3_statusbutton { color:red;} </style>
<h3>simple table, ver 3:</h3>
<table id="simpletablev3"></table>
总之,我正在努力解决在正确的时间按下按钮的问题。在版本1中,行被选中,按钮永远不会被推送。版本2根本不使用“按钮” - 它只处理单元格点击。 Verion 3在行选择之前单击按钮(错误的顺序)。
任何帮助将不胜感激!
答案 0 :(得分:4)
你可以在这里使用每行的动作格式化程序,并在formatOptions中将编辑和删除按钮设为false,如下所示:
formatoptions: {editbutton:false,delbutton:false}}
并按照这两个演示:
http://www.ok-soft-gmbh.com/jqGrid/Admin3.htm
http://ok-soft-gmbh.com/jqGrid/TestSamle/Admin1.htm
点击这些自定义按钮的事件会显示警告:
修改强>
var getColumnIndexByName = function (grid, columnName) {
var cm = grid.jqGrid('getGridParam', 'colModel'), i, l = cm.length;
for (i = 0; i < l; i++) {
if (cm[i].name === columnName) {
return i; // return the index
}
}
return -1;
},
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"));
});
}
如果您检查此代码,我试图通过将列名称设置为“act”来查找索引值,您可以通过提供不同的列名来获取任何其他列的索引。
var iCol = getColumnIndexByName(grid, 'Demo'); and the rest of the code will be same for you. //demo is the column name where u want to add custom button
并为此按钮编写点击事件。
让我知道这是否适合您。