I would like to show a clickable URL within a Kendo Grid that opens a bootstrap modal. Unfortunately, when the user clicks on this link, the browser navigates to a new page to show the results.
The code below is supposed to open a partial view that would load the proper data for the specified LotId.
Any help would be greatly welcomed.
Thanks!
@(Html.Kendo().Grid<
LotViewModel
>()
.Name("LotGrid")
.Columns(columns =>
{
columns.Bound(x => x.LotName).ClientTemplate(@Html.ActionLink("#=LotName#", "ShowLotModal", "Lot", new { id = "#=LotId#" }, null));
})
// Etc...
Were you ever able to solve this issue?