I have a jqxGrid setup with autorowheight and one of the columns need to be a link to a different page so I have the following:
var resolvedRenderer = function (row, columnfield, value, defaulthtml, columnproperties) {
var id = $('#feedbackGrid').jqxGrid('getcellvalue', row, 'issueId');
var url = '/issueresolution/viewhistory/id/' + id;
return '<a href="' + url + '" class="openInDialog">' + value + '</a>';
}
I’ve also tried the jqx.dataFormat.formatlink
function and it results in the same problem.
The problem is that when I define a cellsrenderer the values are no longer center aligned vertically (left column).

This even happens if I return the defaulthtml value. Is there any way to fix this?