<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Sidebar Summary using Visualforce</title>
	<atom:link href="http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/feed/" rel="self" type="application/rss+xml" />
	<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/</link>
	<description>Authored by Scott Hemmeter of Arrowpointe Corp, this blog is written from the perspective of a Salesforce.com solution provider and contains information on Arrowpointe's AppExchange products as well as tips, findings, sample code, functionality wishes, etc.</description>
	<lastBuildDate>Mon, 26 Jul 2010 02:42:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Scott Hemmeter</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-63125</link>
		<dc:creator>Scott Hemmeter</dc:creator>
		<pubDate>Fri, 25 Jun 2010 14:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-63125</guid>
		<description>@Brendan, Go to the page you have embedded in the Setup and make sure its security is assigned to all your profiles.  Most likely, what those users are seeing is a message that says they do not have the rights to the page.</description>
		<content:encoded><![CDATA[<p>@Brendan, Go to the page you have embedded in the Setup and make sure its security is assigned to all your profiles.  Most likely, what those users are seeing is a message that says they do not have the rights to the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brendan</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-63123</link>
		<dc:creator>Brendan</dc:creator>
		<pubDate>Fri, 25 Jun 2010 01:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-63123</guid>
		<description>Good work Scott,

I have completed the above and all works well for me in my sandbox (i am an administrator). However when i view the sidebar summary via a login that is not an administrator, it is displaying the homepage within the small box, not the list of results required.

Please help.

Brendan</description>
		<content:encoded><![CDATA[<p>Good work Scott,</p>
<p>I have completed the above and all works well for me in my sandbox (i am an administrator). However when i view the sidebar summary via a login that is not an administrator, it is displaying the homepage within the small box, not the list of results required.</p>
<p>Please help.</p>
<p>Brendan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-61878</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 14 Jul 2009 16:21:49 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-61878</guid>
		<description>Hi, I&#039;ve got this iframe idea working fine in IE, but Firefox gives a Redirect Loop error &quot;Redirection limit for this URL exceeded.  Unable to load the requested page.  This may be caused by cookies that are blocked.&quot;
I&#039;m just pointing the iframe at an apex page. Did anyone else encounter this issue with Firefox, and if so how did you fix it?
Thanks</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;ve got this iframe idea working fine in IE, but Firefox gives a Redirect Loop error &#8220;Redirection limit for this URL exceeded.  Unable to load the requested page.  This may be caused by cookies that are blocked.&#8221;<br />
I&#8217;m just pointing the iframe at an apex page. Did anyone else encounter this issue with Firefox, and if so how did you fix it?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Per Geert</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-61321</link>
		<dc:creator>Per Geert</dc:creator>
		<pubDate>Wed, 24 Dec 2008 15:49:48 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-61321</guid>
		<description>@CK

Actually the error is only in your test method (if your are below 10,000 records). A way around this is to find a way the test method returns fewer than 500 rows, e.g. by using System.runAs(some user user).</description>
		<content:encoded><![CDATA[<p>@CK</p>
<p>Actually the error is only in your test method (if your are below 10,000 records). A way around this is to find a way the test method returns fewer than 500 rows, e.g. by using System.runAs(some user user).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Hemmeter</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-61309</link>
		<dc:creator>Scott Hemmeter</dc:creator>
		<pubDate>Mon, 15 Dec 2008 18:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-61309</guid>
		<description>@CK

The error is due to one of you queries having more than 1000 rows. It&#039;s a limitation I didn&#039;t realize when writing the post. Only workaround I have is to remove the query counting that many rows or to put a limit on the query of 1000 (put &quot;LIMIT 1000&quot; at the end of the SOQL statement).  You will just have to train people that if they see 1000, it means &quot;1000+&quot;.</description>
		<content:encoded><![CDATA[<p>@CK</p>
<p>The error is due to one of you queries having more than 1000 rows. It&#8217;s a limitation I didn&#8217;t realize when writing the post. Only workaround I have is to remove the query counting that many rows or to put a limit on the query of 1000 (put &#8220;LIMIT 1000&#8243; at the end of the SOQL statement).  You will just have to train people that if they see 1000, it means &#8220;1000+&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CK</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-61308</link>
		<dc:creator>CK</dc:creator>
		<pubDate>Sun, 14 Dec 2008 18:45:59 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-61308</guid>
		<description>The above error is in my production, but when I run the test in developer edition, it works and no failure.</description>
		<content:encoded><![CDATA[<p>The above error is in my production, but when I run the test in developer edition, it works and no failure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CK</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-61307</link>
		<dc:creator>CK</dc:creator>
		<pubDate>Sun, 14 Dec 2008 18:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-61307</guid>
		<description>This has been working well.... but however, when I click &quot;run test&quot; on the class today, it say test failed:

Test Class VFController_Sidebar_Summary     
Tests Run 1     
Test Failures 1     
Code coverage total % 100     
Total time (ms) 0 

Class VFController_Sidebar_Summary testVFController_Sidebar_Summary 136 System.Exception: Too many query rows: 501 Class.VFController_Sidebar_Summary.getPastDueOppty: line 52, column 8
Class.VFController_Sidebar_Summary.testVFController_Sidebar_Summary: line 68, column 14 

And I cannot deploy other class even the &quot;package.xml&quot; file does not list this class, it gives me same error.

Any idea why?

Thanks</description>
		<content:encoded><![CDATA[<p>This has been working well&#8230;. but however, when I click &#8220;run test&#8221; on the class today, it say test failed:</p>
<p>Test Class VFController_Sidebar_Summary<br />
Tests Run 1<br />
Test Failures 1<br />
Code coverage total % 100<br />
Total time (ms) 0 </p>
<p>Class VFController_Sidebar_Summary testVFController_Sidebar_Summary 136 System.Exception: Too many query rows: 501 Class.VFController_Sidebar_Summary.getPastDueOppty: line 52, column 8<br />
Class.VFController_Sidebar_Summary.testVFController_Sidebar_Summary: line 68, column 14 </p>
<p>And I cannot deploy other class even the &#8220;package.xml&#8221; file does not list this class, it gives me same error.</p>
<p>Any idea why?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc B</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-60928</link>
		<dc:creator>Marc B</dc:creator>
		<pubDate>Fri, 10 Oct 2008 15:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-60928</guid>
		<description>Scott,

super useful and can&#039;t wait to try out in my org.  Thanks for this post - terrific!

Marc</description>
		<content:encoded><![CDATA[<p>Scott,</p>
<p>super useful and can&#8217;t wait to try out in my org.  Thanks for this post &#8211; terrific!</p>
<p>Marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CK</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-60898</link>
		<dc:creator>CK</dc:creator>
		<pubDate>Sun, 05 Oct 2008 04:51:10 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-60898</guid>
		<description>adding the &quot;with sharing&quot; property in the public class is good in some case because the managers should see his team&#039;s opps, if the sharing default is private.


@Rhonda, you can add the following to your query:

AND OwnerId = :UserInfo.getUserId()</description>
		<content:encoded><![CDATA[<p>adding the &#8220;with sharing&#8221; property in the public class is good in some case because the managers should see his team&#8217;s opps, if the sharing default is private.</p>
<p>@Rhonda, you can add the following to your query:</p>
<p>AND OwnerId = :UserInfo.getUserId()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CK</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-60891</link>
		<dc:creator>CK</dc:creator>
		<pubDate>Fri, 03 Oct 2008 20:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-60891</guid>
		<description>Thank you, Scott.
I changed the font and now it looks beautiful.</description>
		<content:encoded><![CDATA[<p>Thank you, Scott.<br />
I changed the font and now it looks beautiful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Hemmeter</title>
		<link>http://sfdc.arrowpointe.com/2008/09/17/sidebar-summary-using-visualforce/comment-page-1/#comment-60890</link>
		<dc:creator>Scott Hemmeter</dc:creator>
		<pubDate>Fri, 03 Oct 2008 18:06:22 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=395#comment-60890</guid>
		<description>@CK, yes you can change font-size with CSS.  In my example, there&#039;s a section that says:

&lt;blockquote&gt;#DIV_Container {background-color: #F3F3EC;}&lt;/blockquote&gt;

You want to add a font-size option.  The value can be a specific size (e.g. 6pt) or a relative size to the standard (e.g. .8em).  Example below:

&lt;blockquote&gt;#DIV_Container {background-color: #F3F3EC; font-size: .9em;}&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>@CK, yes you can change font-size with CSS.  In my example, there&#8217;s a section that says:</p>
<blockquote><p>#DIV_Container {background-color: #F3F3EC;}</p></blockquote>
<p>You want to add a font-size option.  The value can be a specific size (e.g. 6pt) or a relative size to the standard (e.g. .8em).  Example below:</p>
<blockquote><p>#DIV_Container {background-color: #F3F3EC; font-size: .9em;}</p></blockquote>
]]></content:encoded>
	</item>
</channel>
</rss>
