Drill through report as Popup window

  • Hey I have a drill through (well not technically it can only drill through once) and I'd like it to show up as a popup window, any ideas?

     

  • This was removed by the editor as SPAM

  • OK since no one has responded I'll give some more detail. I'm writing a web app to pull requested reports into it via url access into an iframe. One of the reports is an order history report which has an Invoice column, when they click on that column I want to take them to the invoice for thta order, but there are 2 things I need to "NOT HAPPEN" when I look at the code for the link it has a target="_top" in it, needs to go away or change to target="_self", secondly there is a javascript function:

    function OnLoadReport()

    {

    var pageHits = null;

    var rep = new Report(1, 1, pageHits, false, docMapIds);

    if (parent != self) parent.OnLoadReport(rep);

    }

    I see no way to override these things in the report design

  • Did you ever find a solution to this problem??  Please let me know.

    Thank you!

  • Nope never figured it out, it turned out that we had to write our reports in aspx anyway, the client refused to upgrade their hardware. They had an ecommerce site and reporting site for members taking over 12k orders a month on the ecommerce and the reports were getting closer to that many hits a day, some members would sit there and refresh the report over and over (reports that took close to 5 mins to run) and the client wouldnt upgrade sql to be on 2 processors. It was an MLM company (think avon/pyramid) and they demanded real time reporting on downline type information. It was a nightmare situation which i am no longer working for . Of course it didn't help much that the database we inherited was horrendus.

  • Well, if you are interested, I found a solution:  You must set the following hidden variable on the form from which you are posting to the report server page:

    <INPUT Type="hidden" value="_self" name="rc:LinkTarget">

    so that that variable and its value are tranferred to the Report Server page.

    Cheers!

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply