This question is locked. New answers and comments are not allowed.
columns.Bound(i => i.Id).ClientTemplate(@"<a href=""OpenPdfInvoice/<#=SupplierName#>_<#=InvoiceNumber#>_<#=Id#>"" target=""_blank"" onClick=""UpdatePage(); return true"">View</a>").Encoded(false).Title("") .Width(cookie["Id"] == null ? 60 : int.Parse(cookie["Id"]));
I have had this client template in the grid and it has been working for a long time. There are no changes that I can find in our changes history that would cause this to no longer work. The link was previously rendered
as http://localhost:55919/unregistereduserpreview/OpenPdfInvoice/AXA_00000285_2188
but now is somehow adding the action method that populates the grid with ajax to the url -
http://localhost:55919/unregistereduserpreview/UnregisteredUserInvoiceSummary/OpenPdfInvoice/AXA_00000285_2188
which of course throws a 404.
Any help would be greatly appreciated,
Toby Holland