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
GhanashyamGhanashyam 

Multiple rows of dashboard in Home tab

Hi,
I understand that by default one the first row of dashboard gets displayed in home tab. Is there any way to show multiple dashboard rows?
 
 
Thanks
 
Ghanashyam
JPSeaburyJPSeabury
No configurable way.  I just hacked around with this real quick -- it's less than pretty, but works:
  1. Grab the URL of your favorite dashboard
  2. Go to Setup -> Customize --> Home --> Home Page Components.  Click New.
  3. Name="Ugly Dashboard", Type=HTML
  4. Component Position is Wide (Right) Column (default).  Click the "Show HTML" check box, and paste the URL you grabbed from step 1 into an IFRAME:
Code:
<IFRAME src="https://na3.salesforce.com/01Z500000002q9F" frameBorder=0 width="100%" height=300></IFRAME>

 

You may need to play with the height until it shows just the depth you're looking for.  


  5.  Add this new component to your Home Page Layout.

 

It's ugly, because you have the entire top of the page, including all your tabs -- although you could clean those up with some Visualforce once Dashboard pages are exposed.



Message Edited by JPSeabury on 08-01-2008 12:19 AM
GhanashyamGhanashyam
Thanks mate. That works:)!
JAW99JAW99
Has anyone a better sugestion for this issue - something that looks better and allows control? Putting the right dashboard on users' homepage is certainly more challenging than it ought to be.