I am new to JQGrid and my objective is to redirect to a different page when user clicks on a hyperlink column cell in a jqgrid row. The content present inside this column would be common for each row. My colModel is as mentioned below
{ name: 'Edit', index: 'Edit', width: 130, align: "center", formatter: 'showlink', editable: true, resizable: true, formatoptions: { baseLinkUrl: 'EditUserDetails.aspx'} }
Now when i click on hyperlink, it is correctly redirecting to the specified page and by default in QueryString i get the rowid of the selected row but i want the value present in one of the columns for e.g. if I have two columns in my grid named UsedId and Edit, then on click of link, I should get the value of UserId present in the selected row in the QueryString. Can You Please guide me how to achieve this using JavaScript.