将另一个CELL值绑定到Jqgrid中的Showlink选项

时间:2014-12-11 16:19:17

标签: javascript jquery vb.net jqgrid

我的表中有两个值,用于存储FormName和FormPath。

Ex:FormName将包含“Click For New Version”     FormPath将包含“../ Attachments / pdf / Forms / pressForm.pdf”

所以在我的Jqgrid中,我必须显示一个列,将文本显示为FormName,将HREF URL显示为FormPath。

那么如何实现这一点。

提前致谢,

1 个答案:

答案 0 :(得分:1)

我找到了一种方法来做到这一点。

  {
                             name: 'FormPath',
                             index: 'FormPath',
                             editable: true,
                             formatter: GetFormURL
                             }

 function GetFormURL(cellvalue, options, rowObject) {
                  debugger;
                  return '<a href="' + cellvalue + '">' + rowObject.Category + '</a>';
                  //return '<img src="' + cellvalue + '" />';
              }