Hello Kendo UI Team,
We are developing a grid with a column value as a link
this is the code:
columns: [{
field:
"OrderID"
,
title:
"ORDER #"
,
template:
function
(data) {
var
url = getUrlWithLocale(
"/Account/OrderHistory/GetOrderDetails/"
);
return
"<a id='btnViewDetails' data-orderID='"
+ data.OrderID +
"' href='"
+ url + data.OrderID +
"/Ds'>"
+ data.OrderID +
"</a>"
;
}
},
It is working fine except because the link does not work, however if you use the right click and select the option open link in a new tab works fine,
Could you please assist with this issue?
Thanks in advance!