I have a grid with first column having a template for
columns:
[
{
field: "KedocTitle", template: "<a href='#=FileRef#'
So #=FileRef# brings the URL correctly and users can go to that page. Now I have a requirement to show that page in a big tooltip. So I added this:
ChronGrid.table.kendoTooltip({
filter: "td:nth-child(1)", //this filter selects the first column
position: "right",
width: 900,
height: 700,
content: { url: "#=FileRef#"
}
}).data("kendoTooltip");
The result is the same page showing in the tooltip, not the URL that #=FileRef# has.
Any Idea How to do that?