Today I ran into a similar problem.
You can use .RowAttributes. In this way:
Html.Grid(Model).Columns(column =>
{
column.For(e => e.Id);
column.For(e => e.Message);
})
.RowAttributes(x => new Dictionary<string, object>
{{"onClick", "window.location.href = 'google.com'"}})
.Render();
As a result, when you click on it, it will run javascript "onclick" and open google. You can change the URL to transfer to Id with "x" in Lamda.