Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
We are experimenting the power bi embedded solution to integrate with our multi-tenant enterprise application. We would like to embed a hyperlink in our dashboard and handle the click event in our hosted application and take appropriate action. How can we accomplish this task? Any reference would be greatly appreciated.
Solved! Go to Solution.
@Anonymous wrote:
We are experimenting the power bi embedded solution to integrate with our multi-tenant enterprise application. We would like to embed a hyperlink in our dashboard and handle the click event in our hosted application and take appropriate action. How can we accomplish this task? Any reference would be greatly appreciated.
@Anonymous
You can bind a hyperlink to the clicktile event. The clicked tile's details(tile id, page name, groupid etc) are contained in the even.detail.
dashboard.on("tileClicked", function (event) {
alert("I'm clicked!");
alert(JSON.stringify(event.detail));
});
See the Power BI Javascript API wiki.
We are experimenting the power bi embedded solution to integrate with our multi-tenant enterprise application. We would like to embed a hyperlink in our dashboard and handle the click event in our hosted application and take appropriate action. How can we accomplish this task? Any reference would be greatly appreciated.
@Anonymous wrote:
We are experimenting the power bi embedded solution to integrate with our multi-tenant enterprise application. We would like to embed a hyperlink in our dashboard and handle the click event in our hosted application and take appropriate action. How can we accomplish this task? Any reference would be greatly appreciated.
@Anonymous
You can bind a hyperlink to the clicktile event. The clicked tile's details(tile id, page name, groupid etc) are contained in the even.detail.
dashboard.on("tileClicked", function (event) {
alert("I'm clicked!");
alert(JSON.stringify(event.detail));
});
See the Power BI Javascript API wiki.
You can use the Power BI Sample Tool to interact with an embedded report and get code samples
In the tool, after you run an embedding of a sample report, go to "Interact" on the left and choose "Events" on the top
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 21 | |
| 11 | |
| 11 | |
| 10 |