1 Answers
Hi,
You can provide link to any downloadable file in grid, using a virtual readonly column: e.g.
$col = array();
$col["title"] = "Report";
$col["name"] = "reportcol";
$col["editable"] = false;
$col["template"] = "<a href="/myreport.pdf">Report</a>";
$cols[] = $col;
PS: This template property is supported in full version.
Your Answer