I have a JQgrid which cotains only one column which contains some 4 values... I need to add a hyperlink after that 4 values.. It should not be a column value... Instead it should be an separate hyperlink inside the JQgrid.. How to achieve this??This is my code:Aspx:\[code\]<table id="UsersGrid" width = "750px"> </table> \[/code\]Js:\[code\]$(function () { $("#UsersGrid").jqGrid({ datatype: function (pdata) { getData(pdata); }, colNames: ['CampaignName'], colModel: [ { name: 'campaign_name', index: 'CampaignName', width: 750}, ], hidegrid: false, caption: 'Recent Campaigns' });}); function getData(pData) { var userid = $("#userId").val(); var postData = http://stackoverflow.com/questions/15474652/{}; postData.userId = userid; $.ajax({ type:"GET", url: "/iSpaceWeb/CampaignService.svc/GetRecentCampaigns", contentType: "application/json; charset=utf-8", dataType: "json", data: postData, success: function (data) { ReceivedClientData(JSON.parse(data)); }, error: function (data, textStatus) { alert('An error has occured retrieving data!'); } }); } function ReceivedClientData(data) { var thegrid = $("#UsersGrid"); for (var i = 0; i < data.length; i++) { thegrid.jqGrid('addRowData', i, data); } }\[/code\]