我在存储FormName和FormPath的表中有两个值。
例如:FormName将包含“单击以获取新版本”
FormPath将包含“ ../Attachments/pdf/Forms/pressForm.pdf”
因此,在我的Jqgrid中,我必须显示一列,该列将文本显示为FormName,将HREF URL显示为FormPath。
那么如何实现这一目标。
提前致谢,
最佳答案
我找到了一种类似的方法。
{
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 + '" />';
}