I am trying to create a link to an url such as home/details/1 in a jqGrid column.
The documentation shows : showlink {baseLinkUrl: '', showAction: 'show', addParam:'&key=2'} Note: the addParam should contain &.
For example: formatter: ’showlink’, formatoptions: {baseLinkUrl: ’someurl.php’, addParam: ‘&action=edit’} This will output: http: // localhost / someurl.php?id=123&action=edit
Has anyone used the formatter to create routes instead of querystrings?