我有一个很好的内联编辑示例jQGrid http://ok-soft-gmbh.com/jqGrid/TestSamle/Admin.htm 有两个自定义操作编辑和删除。
我想再添加一个自定义内联Action,让我们称之为ToggleOnline。在此操作上,我想将网格的所有单元格发布到控制器。基本上它将是一种编辑操作,但它会为某些列设置一些默认值。
内嵌按钮的添加方式如下:
{ name: 'act', index: 'act', width: 55, align: 'center', sortable: false, formatter: 'actions',
formatoptions: {
keys: true, // we want use [Enter] key to save the row and [Esc] to cancel editing.
delOptions: myDelOptions
}
}
而不是添加自定义附加按钮我正在使用事件loadComplete:
loadComplete: function(){
debugger;
var ids = jQuery("#Grid1").getDataIDs();
for(var i=0;i<ids.length;i++){
var cl = ids[i];
custom = "<input style='height:22px;width:20px;' type='button' value='E' onclick=jQuery('#Grid1').editRow(" + cl + "); />";
jQuery("#Grid1").setRowData(ids[i], { act: custom })
}
}
但自定义按钮根本没有显示。而且我还需要以某种方式发布行数据,我还需要指定自定义操作名称(oper)来处理服务器上的此操作。
答案 0 :(得分:9)
我为您更新了演示。现在http://ok-soft-gmbh.com/jqGrid/TestSamle/Admin1.htm做你需要的。 (我从代码中删除了第二个网格以保持代码更小):
对实施的一些评论。动作格式化程序在div中添加“动作按钮”元素。每个“操作按钮”都有HTML标记,如下所示
<div style="margin-left: 5px; float: left;"
class="ui-pg-div ui-inline-del"
onmouseover="jQuery(this).addClass('ui-state-hover');"
title="Delete selected row"
onmouseout="jQuery(this).removeClass('ui-state-hover');"
onclick="$.fn.fmatter.rowactions('10','List1','del',0);">
<span class="ui-icon ui-icon-trash"></span>
</div>
因此,要让自定义按钮的外观靠近我在loadComplete
内部执行的原始“操作按钮”,请执行以下操作:
loadComplete: function () {
var grid = $(this),
iCol = getColumnIndexByName(grid,'act'); // 'act' - name of the actions column
grid.children("tbody")
.children("tr.jqgrow")
.children("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-left": "5px", float:"left"})
.addClass("ui-pg-div ui-inline-custom")
.append('<span class="ui-icon ui-icon-document"></span>')
.appendTo($(this).children("div"));
});
}
,其中
var getColumnIndexByName = function(grid,columnName) {
var cm = grid.jqGrid('getGridParam','colModel'), i=0,l=cm.length;
for (; i<l; i+=1) {
if (cm[i].name===columnName) {
return i; // return the index
}
}
return -1;
};
您可以从'ui-icon-document'更改自定义按钮的图标,并更改click
事件句柄的代码,我需要您展示如何获取rowid。使用它,您可以使用getRowData
方法来包含该行的另一个单元格。
更新:free jqGrid的当前版本支持实现自定义按钮的简便方法。请参阅the demo。