javascript - Open a hyperlink from Reporting Services in a new window and pass through a value -
i have created hyperlink report , pass through value successfully.
="http://applicationlive:8080/applicationname/secure/eventreportpage.zul?eventreportid=" & fields!event_report_id.value now want open in new window.
i've tried variations of
=”javascript:void(window.open(‘http://applicationlive:8080/applicationname/secure/eventreportpage.zul?eventreportid=" & fields!event_report_id.value,’_blank’))” with no joy, either hyperlink doesn't or report doesn't preview.
is possible pass though report value web application url in new window? , if can help.
i created link url in query-
'<a href = "javascript:void(window.open(''http://applicationlive:8080/applicationname/secure/ eventreportpage.zul?eventreportid=' + convert(varchar(15), event_report_id) + ''',''_blank''));">' + linkdescription + '</a>' [link] then in report went place holder properties , interpreted html tags styles.
hope works you.
Comments
Post a Comment