Originally posted by Unknown
I guess Rock doesn't let you adjust the template for the rendered "View" button as I thought it did...so I added some JQuery to add target="_blank" to the button which opens it in a new tab:
<script>
function pageLoad() {
$("a[href^='/GetFile.ashx']").attr("target","_blank");
}
</script>