I have a SSRS report that that has URLs as one of the column. This report is shown within an iFrame of some other page. I want that whenever users click on the URL field of the report, the link should open in a new Parent window rather than the existing window in which the report is shown. I have tried the following but none seem to work:
="javascript:void(parent.window.location.replace('http://www.xyz.com/"& Fields!Id.Value & "','_blank'))" ="javascript:void(parent.window.location.replace('http://www.xyz.com/"& Fields!Id.Value & "','_parent'))" ="javascript:void(window.open('http://www.xyz.com/"& Fields!Id.Value & "','_parent'))" ="javascript:void(window.open('http://www.xyz.com/"& Fields!Id.Value & "','_top'))" ="javascript:void(top.right_side.location('http://www.xyz.com/"& Fields!Id.Value & "','_blank'))"