function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
dasydasy 

Link to Dashboard

I want make a vf page with link to MY dashboard but not the specific id because of it be changed when I install the package

 

on other organization.


or, if it is not possible I want that when someone select my application My dashboard would be display automatically.

 

please help me!!

 

 

 

ngabraningabrani

You could use outputLink and pass the id using the apex:param. Something like -->

 

<apex:outputLink value="http://google.com/search">
Search Google
<apex:param name="q" value="{!contact.name}"/>
</apex:outputLink>