最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - hyperlinkbutton with custom function call in jqgrid - Stack Overflow

programmeradmin0浏览0评论

I want to add a hyperlink / button in each row of jqgrid, that fires a custom javascript function. Tired of various trials.

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");
}

The code in addlinks in is getting executed but there nothing appears in the column. I tried using custom formatting also but I couldnot show custom text "Edit" and link click doesnot fire the js method.

I want to add a hyperlink / button in each row of jqgrid, that fires a custom javascript function. Tired of various trials.

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");
}

The code in addlinks in is getting executed but there nothing appears in the column. I tried using custom formatting also but I couldnot show custom text "Edit" and link click doesnot fire the js method.

Share Improve this question asked Jun 19, 2014 at 9:27 Krishna SarmaKrishna Sarma 1,8502 gold badges30 silver badges53 bronze badges 4
  • Have you tried the formatter? if so can you share them or provide the demo... – GGG Commented Jun 19, 2014 at 9:35
  • I added another column to grid, which shows link { name: 'ProductId', formatter: 'showlink', formatoptions: { baseLinkUrl: '/Product/ProductEdit/', addParam: '&action=edit' } } – Krishna Sarma Commented Jun 19, 2014 at 9:38
  • 1 I would remend you to read the answer and this one which shows how to use 1) custom formatter to place some text/link/button in the column 'edit' and 2) how to use beforeSelectRow callback instead of onclick attribute to execute any JavaScript code on click on the link/button... – Oleg Commented Jun 19, 2014 at 10:10
  • beforeSelectRow callback have the second parameter e which provide you information about the clicked element. $(e.target).closest("td") will be the clicked cell, $(e.target).closest("tr") will be the clicked row, $(e.target).closest("td").attr("id") will be the rowid and so on. var iCol = $.jgrid.getCellIndex($(e.target).closest("td")[0]); is the column number of the clicked cell. In any way I strictly remend you to use gridview: true option (see the answer) to improve performance. Usage of addlinks makes grid slow. – Oleg Commented Jun 19, 2014 at 10:16
Add a ment  | 

1 Answer 1

Reset to default 9

You need to call a formatter for edit column like below :

Add formatter: addLink to the last column :

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,formatter: addLink},

    ]

add javascript function :

function addLink(cellvalue, options, rowObject) 
{
  //to get row Id
  alert(options.rowId);
  // to get product Id
  alert(rowObject.ProductId);
  return "<a href='#' style='height:25px;width:120px;' type='button' title='Slet' onclick=\"ff()\" >Slet</a>";
}

More Information on formatter here.

发布评论

评论列表(0)

  1. 暂无评论