I'm sure it's blindingly obvious to a lot of people on how to make the contents of a grid field into a hyperlink, but it took me a minute to figure it out.
If you have a field called 'name', and then a field called 'url', then to make 'name' link to 'url':
...
columns:
[
{
field: "name",
title: "Name",
template: '<a href ="<#= url #>"><#= name #></a>'
},
...
If you have a field called 'name', and then a field called 'url', then to make 'name' link to 'url':
...
columns:
[
{
field: "name",
title: "Name",
template: '<a href ="<#= url #>"><#= name #></a>'
},
...