I know this can be used in the view: "formatValue" => function ($value, $row) {
$lastUpdate = $row["LastUpdate"];
$sharepoint = $row["Sharepoint"];
$mylink = $sharepoint ? "<a href='$sharepoint' target='_blank'>Sharepoint</a><br/>" : "";
return " $mylink $lastUpdate";
},
Is there a way I could do this in the Class file either by using SQL or one of the
->pipe($this->
transformation functions ?
A lot of reports there is no need to list all columns in the view because they are defined in the SQL command, so the only reason I am repeating the same list of columns now for some reports is due to adding a hyperlink to the report.
not a big deal, but a nice to have Thank you