Forum Discussion

toy's avatar
toy
Icon for Advocate I rankAdvocate I
7 years ago
Solved

SAVE AS in embedded power bi - callback for in-app power bi button

hi everyone right now in an embedded report - there are 2 ways to SAVE AS 1. thru the JS lib report.saveAs() 2. thru allowing SaveAs and Edit perms on a report and thereby allowing the user to use...
  • Anonymous's avatar
    Anonymous
    7 years ago

    Could this be what you are looking for?

     

    // report.on will add an event handler .

    report.on("saved", function(event) {

        alert('saved');

    }