我的表中有两个值,用于存储FormName和FormPath。
Ex:FormName将包含“Click For New Version” FormPath将包含“../ Attachments / pdf / Forms / pressForm.pdf”
所以在我的Jqgrid中,我必须显示一个列,将文本显示为FormName,将HREF URL显示为FormPath。
那么如何实现这一点。
提前致谢,
答案 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 + '" />';
}