我想在jqgrid的每一行中添加一個超鏈接/按鈕,它會觸發一個定製的javascript函數。厭倦了各種試驗。在jqgrid中自定義函數調用的超鏈接/按鈕
jQuery('#ProductListGrid').jqGrid({
url: '/Product/ProductListGrid',
datatype: 'json',
multiselect: true,
height: 250,
autowidth: true,
mtype: 'GET',
loadComplete: addlinks,
colNames: ['ProductId', 'ProductName', 'edit'],
colModel: [
{ name: 'ProductId', index: 'ProductId',key:true, width: 70, hidden: true, editable: true, size: 5 },
{ name: 'ProductName', index: 'ProductName', width: 70, editable: true },
{ name: 'edit', index: 'edit', width: 70},
],
pager: jQuery('#ProductListGrid_pager'),
});
function addlinks() {
var ids = jQuery("#ProductListGrid").getDataIDs();
alert(ids);
for (var i = 0; i < ids.length; i++) {
be = "<a href='#' style='height:25px;width:120px;' type='button' title='Slet' onclick=\"ff()\" >Slet</>";
jQuery("#ProductListGrid").jqGrid('setCell', ids[i],'edit','', { act: be });
}
//for (var i = 0; i < ids.length; i++) {
// jQuery("#ProductListGrid").setCell(i, 'edit', '<a href="#">edit</edit>');
//}
}
function ff()
{
alert("hi");
}
addlinks中的代碼正在執行,但列中沒有任何內容出現。我也嘗試使用自定義格式,但我不能顯示自定義文本「編輯」和鏈接點擊不會觸發js方法。
你有沒有試過格式化程序?如果是的話,你可以分享他們或提供[演示](http://jsfiddle.net)... – GGG
我添加了另一列網格,它顯示鏈接{name:'ProductId',格式化:'showlink',formatoptions: {baseLinkUrl:'/ Product/ProductEdit /',addParam:'&action = edit'}} –
我建議你閱讀[the answer](http://stackoverflow.com/a/14537512/315935)和[this one ](http://stackoverflow.com/a/13765086/315935),它顯示瞭如何使用1)自定義格式化程序在「edit」列中放置一些文本/鏈接/按鈕,以及2)如何使用'beforeSelectRow'回調'onclick'屬性可以通過點擊鏈接/按鈕來執行任何JavaScript代碼... – Oleg