Is it possible have a html link in a column with jqGrid, I can\'t find any example in the documentation?
Sorry to post to an old question, but here is another option that worked for me: simply create a custom formatter and return an anchor tag (a good option if you need really granular control of the link):
function returnMyLink(cellValue, options, rowdata, action)
{
return "Click here";
}
Look in the rowdata for the data returned by your query. Hope this helps someone!