How to implement a dashboard in a portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
I'd like to implement a dashboard in my CSM portal.
But I'm not sure how to go about it.
Are there any useful widgets?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Follow steps from below post,
- Open the dashboard you want to display in the platform UI
- Open dashboard menu in top left and choose Copy Dashboard URL
- Add a HTML Widget to your Service Portal Page
- Hover over the Widget Instance and click the Edit icon
- Switch to source code view
- Add code - <iframe style="overflow: hidden; height: 1000px; width: 100%;" src="URLFromStep2Here" width="100%" height="100%" frameborder="0"></iframe>
If this helped to answer your query, please accept the solution and close the thread.
Thanks,
Bhuvan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
I created an HTML widget using the following source code, but it didn't work:
<p><iframe style="overflow: hidden; height: 1000px; width: 100%;" src="/$pa_dashboard.do?sysparm_dashboard=f09e7b7ed4128fa43f8582c9e9a65253"width="100%" height="100%" frameborder="0"></iframe></p>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
@bonsai Please check this question , someone implemented the same requirement.
Try below:
<iframe style="overflow: hidden; height: 1000px; width: 100%;" src="/$pa_dashboard.do?sysparm_dashboard=f09e7b7ed4128fa43f8582c9e9a65253" </iframe>
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
I used this code but it didn't work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
I'm starting to understand why I can't display the dashboard.
I was able to implement the dashboard created in the "pa_dashboards" table in the portal using the method you taught me.
However, the dashboard I want to display is the one created in the "par_dashboard" table.
Is there a way to display a dashboard created in the "par_dashboard" table?