Returning back to the original report via a return link button in the linked report with multiselect params in the main report

后端 未结 2 474
终归单人心
终归单人心 2021-01-13 17:32

I am working with ssrs reports. I have a summary and a detailed report. The detailed report is linked to the summary report. Now the user wants to have a \"Return to Summary

相关标签:
2条回答
  • 2021-01-13 18:27

    Here is whre you have to place javascript:history.back(1)

    • right click on the report

    • click insert -> textbox

    • once the text box is created

    • right click and choose "Text box properties"

    • click "Action" property

    • choose Go to URL option button

    copy and past javascript:history.back(1)

    (Note: it is case sensitive, you don't need to put quotation mark")

    then click ok and this should be working in IE

    0 讨论(0)
  • 2021-01-13 18:29

    In the Action property Ihad to select the "Jump to URL" option and put this in the textbox for Jump to URL:

    ="javascript: history.go(-1)"
    
    0 讨论(0)
提交回复
热议问题