onselectRow链接有效,但它会覆盖格式化程序链接。
如果我注释掉OnSelect位置,则格式化程序链接有效。否则,格式化程序链接不起作用。不管怎么说?
感谢
onSelectRow: function(row_id) {
location.href="/blah/"+aId;
},
但如果已启用,则会覆盖此链接:
{name:'ID',index:'ID',formatter:pbf, width: 90,align: "center", fixed: true,sortable:false,resizable:false}
gridComplete: function() {
$('span[name="pay"]').click(function() {
location.href='/ew/'+ad;
}
function pbf(cellvalue, options, rowObject){
var pay = '<span name="pay" id="'+rowObject.ID+'" class="ui-icon ui-icon-check" style="margin-left: 10px; margin-top: -3px; float: left"></span>';
return pay;
}