<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Redkite</title>
	<atom:link href="http://www.redkitetechnologies.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redkitetechnologies.com</link>
	<description>Guiding Enterprises Through The Cloud</description>
	<lastBuildDate>Tue, 07 May 2013 01:07:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Floating/Sticky Headers For Visualforce PageBlockTable</title>
		<link>http://www.redkitetechnologies.com/2013/03/floatingsticky-headers-for-visualforce-pageblocktable/</link>
		<comments>http://www.redkitetechnologies.com/2013/03/floatingsticky-headers-for-visualforce-pageblocktable/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 13:12:17 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Force.com Development]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2609</guid>
		<description><![CDATA[Hey everyone, it&#8217;s Dan/Kenji, Senior Developer for Redkite here with a nifty solution to an ever so annoying problem. That is of course that headers of a pageblocktable in Visualforce do not remain visible if you put the table in a scrollable area. I know there are a few approaches on how exactly to best [...]]]></description>
			<content:encoded><![CDATA[<p>Hey everyone, it&#8217;s Dan/Kenji, Senior Developer for Redkite here with a nifty solution to an ever so annoying problem. That is of course that headers of a pageblocktable in Visualforce do not remain visible if you put the table in a scrollable area. I know there are a few approaches on how exactly to best pull this off, but they always seemed too complicated and not very reliable. So I decided to just bite the bullet and write a nice reusable jQuery plugin to take care of it for you. First off, to make sure we are talking about the same thing and what I&#8217;m proposing if what you want, check out the demo link below.</p>
<br />
<a title="Demo" href="http://xerointeractive-developer-edition.na9.force.com/partyForce/floatingHeaders" target="_blank">Demo of Sticky/Floating Headers</a>

<p>If you like what you see, you can download the plugin here.</p>

<a title="jQuery plugin code" href="https://www.box.com/s/lr73ibecfvo4bi0qzzbn" target="_blank">Download jQuery Plugin</a>
<br />
<p>Upload it as a static resource, or just copy paste the contents into your visualforce page. Either way is fine. Also, in your visualforce page you&#8217;ll need to include the css class .floatingStyle and set it&#8217;s position to relative. Like this</p>
<pre style="font-family:Andale Mono, Lucida Console, Monaco, fixed, monospace;color:#000000;background-color:#eee;font-size:12px;border:1px dashed #999999;line-height:14px;padding:5px;overflow:auto;width:100%"><code>&lt;style&gt;      
.floatingStyle 
{ 
    position:relative; 
} 
&lt;/style&gt;
</code></pre>

<p>To use it, simply put your pageblocktable inside a div or apex:outputpanel (with layout set to block). Give that container a height. Invoke the plugin on the table either by class or id. So if my pageblock tables had the styleClass of &#8216;floatingHeaderTable&#8217; I could invoke it this way.</p>
<br />
<pre style="font-family:Andale Mono, Lucida Console, Monaco, fixed, monospace;color:#000000;background-color:#eee;font-size:12px;border:1px dashed #999999;line-height:14px;padding:5px;overflow:auto;width:100%"><code>    &lt;script&gt;
    $(document).ready(function() {
        $('.floatingHeaderTable').vfFloatingHeaders();
    });
    &lt;/script&gt; 
</code></pre>
<p>and that&#8217;s it. You are good to go. Here is a full sample page.</p>

<strong>Visualforce Page</strong>
<pre style="font-family:Andale Mono, Lucida Console, Monaco, fixed, monospace;color:#000000;background-color:#eee;font-size:12px;border:1px dashed #999999;line-height:14px;padding:5px;overflow:auto;width:100%"><code>&lt;apex:page controller="floatingHeadersController"&gt;

    &lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"&gt;&lt;/script&gt;
    &lt;script src="{!URLFOR($Resource.jquery_vfFloatingHeaders)}"&gt;&lt;/script&gt;

    &lt;style&gt;
        .tableContainer
        {
            height:290px; 
            width: 100%;
            overflow: auto;
        }       
        .floatingStyle 
        { 
            position:relative; 
        } 
    &lt;/style&gt;

    &lt;script&gt;
    $(document).ready(function() {
        $('.floatingHeaderTable').vfFloatingHeaders();
    });
    &lt;/script&gt;   

    &lt;apex:pageBlock &gt;
        &lt;apex:outputPanel styleClass="tableContainer" layout="block"&gt;
            &lt;apex:pageBlockTable value="{!contactList}" var="item" title="Contact List" styleclass="floatingHeaderTable" &gt;
                &lt;apex:column value="{!item.firstname}"/&gt;
                &lt;apex:column value="{!item.lastname}"/&gt;
                &lt;apex:column value="{!item.email}"/&gt;
                &lt;apex:column value="{!item.phone}"/&gt;
            &lt;/apex:pageBlockTable&gt;
        &lt;/apex:outputPanel&gt;
    &lt;/apex:pageBlock&gt;
&lt;/apex:page&gt;
</code></pre>
<br />
<strong>Apex Class</strong>
<pre style="font-family:Andale Mono, Lucida Console, Monaco, fixed, monospace;color:#000000;background-color:#eee;font-size:12px;border:1px dashed #999999;line-height:14px;padding:5px;overflow:auto;width:100%"><code>public class floatingHeadersController 
{
    public list&lt;contact&gt; contactList
    {
        get
        {
          if (contactList == null)
          {
              contactList = [select firstname, lastname, email, phone from contact];
          }  
          return contactList;
        }
        set;
    }
}
</code></pre>

<p>Also, I would like to give credit to a blog which helped me immensely with the technique for getting the headers to float properly.

<a href="http://rajputyh.blogspot.com/2011/12/floatingfixed-table-header-in-html-page.html">http://rajputyh.blogspot.com/2011/12/floatingfixed-table-header-in-html-page.html</a>

I just wrapped it up and modified it a bit to work with pageblocktables and packaged it into a plugin.</p>]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2013/03/floatingsticky-headers-for-visualforce-pageblocktable/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>CrunchBase Gaining as an Academic Research Tool</title>
		<link>http://www.redkitetechnologies.com/2013/03/crunchbase-gaining-as-an-academic-research-tool/</link>
		<comments>http://www.redkitetechnologies.com/2013/03/crunchbase-gaining-as-an-academic-research-tool/#comments</comments>
		<pubDate>Thu, 07 Mar 2013 20:25:18 +0000</pubDate>
		<dc:creator>kmccoll</dc:creator>
				<category><![CDATA[Cruncher]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2603</guid>
		<description><![CDATA[Interesting post from the CrunchBase blog noting the increasing use of CrunchBase in academic works. Remember that you can view and save CrunchBase information in Salesforce using our Cruncher app &#8211; get it now from the AppExchange.]]></description>
			<content:encoded><![CDATA[<p>Interesting post from the <a href="http://blog.crunchbase.com/2013/03/07/research-accelerating/">CrunchBase blog</a> noting the increasing use of CrunchBase in academic works. Remember that you can view and save CrunchBase information in Salesforce using our Cruncher app &#8211; <a href="https://appexchange.salesforce.com/listingDetail?listingId=a0N30000008Y2JmEAK">get it now from the AppExchange</a>.</p>
<p><a href="https://appexchange.salesforce.com/listingDetail?listingId=a0N30000008Y2JmEAK"><img src="http://www.redkitetechnologies.com/wp-content/uploads/2013/03/CruncherBanner595.png" alt="Cruncher" title="Cruncher - CrunchBase Plug-in for Salesforce" width="595" height="149" class="aligncenter size-full wp-image-2604" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2013/03/crunchbase-gaining-as-an-academic-research-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>T3 Happy Hour</title>
		<link>http://www.redkitetechnologies.com/2013/02/t3-happy-hour/</link>
		<comments>http://www.redkitetechnologies.com/2013/02/t3-happy-hour/#comments</comments>
		<pubDate>Fri, 08 Feb 2013 02:27:33 +0000</pubDate>
		<dc:creator>kmccoll</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2592</guid>
		<description><![CDATA[If you&#8217;re in the Wealth Management business and attending the T3 Conference, join us for cocktails at the Playwright in Miami Beach on Tuesday night. Co-hosting are our friends at Orchestrate (the smart people behind ProcessComposer) and Orion Advisor Services.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re in the Wealth Management business and attending the <a href="http://www.technologytoolsfortoday.com/conference.html" title="T3 Conference">T3 Conference</a>, join us for cocktails at <a href="http://www.playwrightirishpubfl.com/ordereze/default.aspx">the Playwright</a> in Miami Beach on Tuesday night. Co-hosting are our friends at <a href="http://orchestratellc.com/">Orchestrate</a> (the smart people behind ProcessComposer) and <a href="http://www.orionadvisor.com/">Orion Advisor Services</a>.</p>
<p><img src="http://www.redkitetechnologies.com/wp-content/uploads/2013/02/t3flyer4-web.jpg" alt="" title="t3flyer4-web" width="595" height="750" class="aligncenter size-full wp-image-2593" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2013/02/t3-happy-hour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s News in the Cloud? AppExchange Customer Choice Awards revealed, US Dept. of Energy moving to the cloud, and the effort to protect the internet from government control</title>
		<link>http://www.redkitetechnologies.com/2013/01/whats-news-in-the-cloud-appexchange-customer-choice-awards-revealed-us-dept-of-energy-moving-to-the-cloud-and-the-effort-to-protect-the-internet-from-government-control/</link>
		<comments>http://www.redkitetechnologies.com/2013/01/whats-news-in-the-cloud-appexchange-customer-choice-awards-revealed-us-dept-of-energy-moving-to-the-cloud-and-the-effort-to-protect-the-internet-from-government-control/#comments</comments>
		<pubDate>Fri, 25 Jan 2013 15:38:07 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cloud News]]></category>
		<category><![CDATA[Appexchange]]></category>
		<category><![CDATA[Government]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[ITU]]></category>
		<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2510</guid>
		<description><![CDATA[What&#8217;s New(s) In The Cloud? Here are some of Redkite&#8217;s favorite Salesforce.com and Cloud related tweets this month! Salesforce.com Chairman and CEO Marc Benioff attended CES earlier this month for the Brand Matters keynote, where he spoke about &#8220;the new marketing,&#8221; disruption, and what he was even doing at CES. (Click here for a live [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><a href="http://www.redkitetechnologies.com/products/redhotnews/"><img class="alignnone size-full wp-image-2251" title="Redhotnews_Icon" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/10/Redhotnews_Icon1-e1350338667336.png" alt="" width="90" height="90" /></a><strong> What&#8217;s New(s) In The Cloud?</strong></h2><br /> <strong>Here are some of Redkite&#8217;s favorite Salesforce.com and Cloud related tweets this month!</strong> <br /> <br /> 


<p>Salesforce.com Chairman and CEO Marc Benioff attended CES earlier this month for the Brand Matters keynote, where he spoke about &#8220;the new marketing,&#8221; disruption, and what he was even doing at CES. (Click <a href="http://marketingland.com/live-blog-the-ces-marketing-in-the-cloud-keynote-30363">here</a> for a live blog of the keynote)</p>

<blockquote class="twitter-tweet"><p>The way that brands are marketing themselves has to change says Salesforce’s Marc Benioff At CES <a href="http://t.co/I96c9dUP" title="http://bit.ly/WADEQc">bit.ly/WADEQc</a></p>&mdash; Kaboodle HQ (@kaboodlehq) <a href="https://twitter.com/kaboodlehq/status/292662892082393090">January 19, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

<br />

<p>The AppExchange Customer Choice Awards have been revealed &#8211; see which 13 apps earned the highest reviews.</p>

<blockquote class="twitter-tweet"><p>Check out the @<a href="https://twitter.com/appexchange">appexchange</a> Customer Choice Award Winners  <a href="http://t.co/lBWOFDq4" title="http://bddy.me/WozxHX">bddy.me/WozxHX</a> @<a href="https://twitter.com/echosign">echosign</a> @<a href="https://twitter.com/hooplasoftware">hooplasoftware</a> @<a href="https://twitter.com/bigmachines">bigmachines</a> @<a href="https://twitter.com/xactlycorp">xactlycorp</a> &amp; more</p>&mdash; salesforce.com (@salesforce) <a href="https://twitter.com/salesforce/status/294417034861756417">January 24, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

<br /> 

<p>Back to the basics: the language of CRM</p>

<blockquote class="twitter-tweet"><p>If you use @<a href="https://twitter.com/salesforce">salesforce</a>, bookmark this. If you don&#8217;t use SF, start lol: &#8220;The Marketer&#8217;s Glossary of Salesforce Terms&#8221; <a href="http://t.co/nXeGjHpP" title="http://bit.ly/W9YDLw">bit.ly/W9YDLw</a></p>&mdash; Sam Mallikarjunan (@Mallikarjunan) <a href="https://twitter.com/Mallikarjunan/status/291921361985732608">January 17, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 

<p>Activists continue to push for the United States to scale back financing the ITU after December&#8217;s World Conference on International Telecommunications in an effort to protect the internet from government control.</p>	

<blockquote class="twitter-tweet"><p>Bits Blog: Keeping the Internet Safe From Governments <a href="http://t.co/8yZH5Jlp" title="http://nyti.ms/XzojjU">nyti.ms/XzojjU</a></p>&mdash; NYT Business (@nytimesbusiness) <a href="https://twitter.com/nytimesbusiness/status/294070630880538625">January 23, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 

<p>The US Department of Energy is looking to move to the cloud.</p>	

<blockquote class="twitter-tweet"><p>The US Department Of Energy Is Finally Embracing Cloud Technology<a href="http://t.co/FLIozbIb" title="http://www.cloudtweaks.com/2013/01/the-us-department-of-energy-is-finally-embracing-cloud-technology/">cloudtweaks.com/2013/01/the-us…</a> via @<a href="https://twitter.com/cloudtweaks">cloudtweaks</a> <a href="https://twitter.com/search/%23cloud">#cloud</a></p>&mdash; CloudTweaks (@cloudtweaks) <a href="https://twitter.com/cloudtweaks/status/291900876786896896">January 17, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 

<p>For a change of pace and for some tech history: During the Cold War, a pin-up girl becomes the face of &#8220;a landmark moment in computer graphics and cultural history that has gone unnoticed until now.&#8221;</p>

<blockquote class="twitter-tweet"><p>The Never-Before-Told Story of the World&#8217;s First Computer Art (It&#8217;s a Sexy Dame) <a href="http://t.co/aPgUbTeO" title="http://bit.ly/TqFuZr">bit.ly/TqFuZr</a></p>&mdash; Atlantic (@AtlanticTech_) <a href="https://twitter.com/AtlanticTech_/status/294418752865460225">January 24, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

<p>Articles sourced on Twitter.com by Kate</p>

<a href="https://twitter.com/intent/tweet?text=What%27s+News+In+The+Cloud%3F+&#038;url=http://www.redkitetechnologies.com/2013/01/whats-news-in-the-cloud-appexchange-customer-choice-awards-revealed-us-dept-of-energy-moving-to-the-cloud-and-the-effort-to-protect-the-internet-from-government-control//" target="blank"><img src="http://files.myopera.com/tagawa/blog/twitter_32.png" alt="Twitter button" style="margin:0 8px;vertical-align:middle;">
   Share on Twitter
</a>

<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.redkitetechnologies.com/2013/01/whats-news-in-the-cloud-appexchange-customer-choice-awards-revealed-us-dept-of-energy-moving-to-the-cloud-and-the-effort-to-protect-the-internet-from-government-control//" target="blank" rel="nofollow"><img src="http://files.myopera.com/tagawa/blog/facebook_32.png" alt="Facebook button" style="margin:0 8px;vertical-align:middle;">Share on Facebook</a>

<a href="http://www.linkedin.com/shareArticle?url=http://www.redkitetechnologies.com/2013/01/whats-news-in-the-cloud-appexchange-customer-choice-awards-revealed-us-dept-of-energy-moving-to-the-cloud-and-the-effort-to-protect-the-internet-from-government-control//" rel="nofollow" target="blank"><img src="http://files.myopera.com/tagawa/blog/linkedin_32.png" alt="LinkedIn button" style="margin: 8px;vertical-align:middle;">Share on LinkedIn</a>


]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2013/01/whats-news-in-the-cloud-appexchange-customer-choice-awards-revealed-us-dept-of-energy-moving-to-the-cloud-and-the-effort-to-protect-the-internet-from-government-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redhot Salesforce.com App –  RFP Manager</title>
		<link>http://www.redkitetechnologies.com/2013/01/redhot-salesforce-com-app-rfp-manager/</link>
		<comments>http://www.redkitetechnologies.com/2013/01/redhot-salesforce-com-app-rfp-manager/#comments</comments>
		<pubDate>Fri, 11 Jan 2013 22:16:28 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[App Reviews]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Salesforce.com Salesforce Labs RFP Manager]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2495</guid>
		<description><![CDATA[App of the Month This month our Redhot Salesforce.com App is RFP Manager (formerly RFPForce) by Salesforce Labs. RFP Manager is perfect for Organizations that need help standardizing and maintaining answers to common questions from clients and prospects. What is Salesforce Labs (formerly Force.com Labs)? If you’re picturing hundreds of Force.com developers locked in a [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><img class="alignnone size-full wp-image-2430" title="60X60-LabsIcon" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/11/60X60-LabsIcon.png" alt="" width="90" height="90" /> <img title="RedkiteRedhot" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/08/RedHotNewsLogo.png" alt="" width="93" height="27" /><strong> App of the Month</strong></h2>
<p>This month our Redhot Salesforce.com App is <a href="http://appexchange.salesforce.com/listingDetail?listingId=a0N30000004g7LnEAI" target="_blank">RFP Manager</a> (formerly RFPForce) by Salesforce Labs. RFP Manager is perfect for Organizations that need help standardizing and maintaining answers to common questions from clients and prospects.</p>

<p><strong>What is Salesforce Labs (formerly Force.com Labs)?</strong></p>

<p>If you’re picturing hundreds of Force.com developers locked in a secret lair, maybe inside a hollowed-out mountain, that’s not quite what Force.com Labs is.&nbsp; It’s really just an umbrella term to make it easy for anybody within salesforce.com to publish apps to the AppExchange.&nbsp; There are <a href="http://appexchange.salesforce.com/listingDetail?listingId=a0N300000055lKrEAI">some</a> <a href="http://appexchange.salesforce.com/listingDetail?listingId=a0N30000001gpWhEAI">great</a> <a href="http://appexchange.salesforce.com/listingDetail?listingId=a0N300000016b7rEAA">apps</a>, and they are all <strong>free</strong>, but from the horse’s mouth (emphasis ours):
</p>
<blockquote>Salesforce Labs apps are free to use, but are <strong>not official salesforce.com products</strong>, and should be considered community projects &#8211; these apps are <strong>not officially tested or documented</strong>.</blockquote>

<p>Most apps are provided as <strong>unmanaged packages</strong> – all code can be viewed and changed as desired. This is valuable, but carries with it some hidden downsides (for example, upgrades are difficult; the more popular Labs apps come in unmanaged and managed forms because of this). We advise clients to consider deploying any Salesforce Labs app as if it was their own work:
<ul>
	<li>Test thoroughly</li>
	<li>Review all code</li>
	<li>Pay special attention to the test coverage, as this will come back to haunt you if it lowers your overall coverage percentage.</li>
</ul>
<p><strong>What is RFP Manager?</strong></p>

<p>RFP Manager is a great tool to build, organize, and quickly find responses used in creating larger documents like RFPs, RFIs, or contracts. RFP Manager also standardizes responses to help organizations be more efficient and accurate by giving the user the ability to easily search for responses to common questions. Assigning a response owner gives organizations the added benefit of maintaining the information, keeping it current and correct.</p>

<p>Tracking status, owner, and deadline of the document during its lifecycle is a helpful feature that provides easy visibility, reporting, and timely responses to clients.</p>

<p>RFP Manager has a standard lookup to the Opportunity where the tool works best for tracking RFIs, RFPs, RFQs, and SOWs to opportunities; however the Application can be customized to fit the organization’s documentation needs.</p>

<p><strong>What’s Cool about RFP Manager?</strong></p>

<p>The ability to quickly find common responses that are needed for creating larger documents is the best part of RFP Manager. The search function makes it easy for any user to get the information they need. When installing RFP Manager, gather all the existing information and responses currently being used within the organization and load into RFP Manager. This creates the initial library of responses. Over time the search function will improve as organizations establish more relationships between questions and responses. This is done by associating common questions with standard responses. Organizations can even report on responses to find which answers are most effective.</p>
<p><strong>Who Could Benefit from </strong><strong>about RFP Manager?</strong></p>

<p>Any organization that creates proposals and contracts where responses to common questions can be reused will benefit from RFP Manager. We have a lot of Wealth Management clients regularly dealing with RFPs when pitching to foundations and endowments, and RFP Manager helps avoid reinventing the wheel each time. Many organizations have the information scattered in multiple places and need a tool that centralizes the information and gives the ability to quickly locate and update the information.</p>

<p><strong>Why Redkite Likes RFP Manager?</strong></p>

<p>RFP Manager provides a solution that is simple to install and easy to maintain. The search functionality is robust and not only gives the organization a helping hand finding the information but keeping it current and up to date. &nbsp;Also included with the Application are tips and best practices on how to use the timeline and status features effectively. This gives visibility to existing processes and can help identify any process gaps organizations may have.</p>


<p>You can learn more about RFP Manager and install it for free on the&nbsp;<span style="text-decoration: underline;"><a href="http://appexchange.salesforce.com/listingDetail?listingId=a0N30000004g7LnEAI#allReviewsHeader">Salesforce.com AppExchange.</a></span></p><p>Graciously written by Jennifer</p>

<a href="https://twitter.com/intent/tweet?text=Redhot+Salesforce+App+%2D+RFP+Manager&amp;url=http://www.redkitetechnologies.com/2013/01/redhot-salesforce-com-app-rfp-manager/" target="blank"><img style="margin: 0 8px; vertical-align: middle;" src="http://files.myopera.com/tagawa/blog/twitter_32.png" alt="Twitter button" />
Share on Twitter
</a>

<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.redkitetechnologies.com/2013/01/redhot-salesforce-com-app-rfp-manager/" rel="nofollow" target="blank"><img style="margin: 0 8px; vertical-align: middle;" src="http://files.myopera.com/tagawa/blog/facebook_32.png" alt="Facebook button" />Share on Facebook</a>

<a href="http://www.linkedin.com/shareArticle?url=http://www.redkitetechnologies.com/2013/01/redhot-salesforce-com-app-rfp-manager/" rel="nofollow" target="blank"><img style="margin: 8px; vertical-align: middle;" src="http://files.myopera.com/tagawa/blog/linkedin_32.png" alt="LinkedIn button" />Share on LinkedIn</a>]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2013/01/redhot-salesforce-com-app-rfp-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bright Salesforce.com Ideas &#8211; Reporting Edition &#8211; December 2012</title>
		<link>http://www.redkitetechnologies.com/2012/12/bright-salesforce-com-ideas-december-2012/</link>
		<comments>http://www.redkitetechnologies.com/2012/12/bright-salesforce-com-ideas-december-2012/#comments</comments>
		<pubDate>Fri, 14 Dec 2012 20:51:25 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Salesforce.com Ideas]]></category>
		<category><![CDATA[Dashboards]]></category>
		<category><![CDATA[Reports]]></category>
		<category><![CDATA[Salesforce.com]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2481</guid>
		<description><![CDATA[Bright Ideas: Salesforce Ideas are a good way to show Salesforce that there are some features we can&#8217;t live without.  Here are some innovative ideas on expanding standard Salesforce functionality and helping all of us with our stumbling blocks regarding reports: Report Filters Should Be Able To Compare Fields To Each Other  In Salesforce reporting, users [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><img src="http://www.redkitetechnologies.com/wp-content/uploads/2012/08/idea-1.png" alt="" title="idea (1)" width="90" height="88" class="aligncenter size-full wp-image-2069" /></a></a><strong>Bright Ideas:</strong></h2>
<a href="http://success.salesforce.com/ideaHome">Salesforce Ideas</a> are a good way to show Salesforce that there are some features we can&#8217;t live without.  Here are some innovative ideas on expanding standard Salesforce functionality and helping all of us with our stumbling blocks regarding reports:<br /><br />
<br />
<div>
<h4 id="ideaTitle"><a href="http://success.salesforce.com/ideaView?id=08730000000BrHAAA0" target="_blank">Report Filters Should Be Able To Compare Fields To Each Other</a> <a href="http://success.salesforce.com/ideaView?id=08730000000BrHAAA0" target="_blank" rel="attachment wp-att-1803"><img title="Report Filters Should Be Able To Compare Fields To Each Other" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/07/Capture2.png" alt="" width="79" height="50" align="right" /></a></h4>
In Salesforce reporting, users can only filter based on results of specific fields.  Comparing of two fields would allow for us to utilize standard reports instead of using separate apps or manipulating data in excel.  

<br />
<br />




<div>
<h4 id="ideaTitle"><a href="http://success.salesforce.com/ideaView?id=08730000000Br4YAAS" target="_blank">Override Standard Report Types</a> <a href="http://success.salesforce.com/ideaView?id=08730000000Br4YAAS" target="_blank" rel="attachment wp-att-1803"><img title="Override Standard Report Types" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/07/Capture2.png" alt="" width="79" height="50" align="right" /></a></h4>
The number of report types can be overwhelming and not applicable for both admin and general users.  By overriding standard reports, this will allow administrators to minimize the noise and keep users focused on reports that will allow them to get the results they desire from Salesforce.
<br /><br />
</div>

<div>
<h4 id="ideaTitle"><a href="http://success.salesforce.com/ideaView?id=08730000000BqtyAAC" target="_blank">Sort Multiple Columns in Tab View or Reports</a> <a href="http://success.salesforce.com/ideaView?id=08730000000BqtyAAC" target="_blank" rel="attachment wp-att-1803"><img title="Sort Multiple Columns in Tab View or Reports" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/07/Capture2.png" alt="" width="79" height="50" align="right" /></a></h4>
Most users of Salesforce live in either the List Views or Reports to keep them focused on what their next to do is.  Choosing to sort the view/report on multiple levels would allow users to have a more sophisticated view of their information.  Could you imagine being able to sort your opportunities by open stage and close date?  If so, vote to promote this by clicking here.  

<br />
<br />
<div>
<h4 id="ideaTitle"><a href="http://success.salesforce.com/ideaView?id=08730000000Brm7AAC" target="_blank">Floating Report Headers in Summary and Matrix Reports </a> <a href="http://success.salesforce.com/ideaView?id=08730000000Brm7AAC" target="_blank" rel="attachment wp-att-1803"><img title="Floating Report Headers in Summary and Matrix Reports" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/07/Capture2.png" alt="" width="79" height="50" align="right" /></a></h4>
Floating Report Headers on Tabular Reports are available in salesforce. Bringing this feature to the next level and applying it to summary and matrix reports would make all of our lives easier as we review the really extensive reports.  

<br />
<br />

<p>Article by Darci</p>

<a href="https://twitter.com/intent/tweet?text=Bright+Salesforce&#46;com+Ideas+&#45;+December+&#50;&#48;&#49;&#50;&#038;url=http://www.redkitetechnologies.com/2012/12/bright-salesforce-com-ideas-december-2012/" target="blank"><img src="http://files.myopera.com/tagawa/blog/twitter_32.png" alt="Twitter button" style="margin:0 8px;vertical-align:middle;">
   Share on Twitter
</a>

<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.redkitetechnologies.com/2012/12/bright-salesforce-com-ideas-december-2012/" target="blank" rel="nofollow"><img src="http://files.myopera.com/tagawa/blog/facebook_32.png" alt="Facebook button" style="margin:0 8px;vertical-align:middle;">Share on Facebook</a>

<a href="http://www.linkedin.com/shareArticle?url=http://www.redkitetechnologies.com/2012/12/bright-salesforce-com-ideas-december-2012/" rel="nofollow" target="blank"><img src="http://files.myopera.com/tagawa/blog/linkedin_32.png" alt="LinkedIn button" style="margin: 8px;vertical-align:middle;">Share on LinkedIn</a>]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2012/12/bright-salesforce-com-ideas-december-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s News in the Cloud? Cloud expenditure up 41%, electronic devices on your flight, and the explosive growth of one social network in 2012</title>
		<link>http://www.redkitetechnologies.com/2012/12/whats-news-in-the-cloud-cloud-expenditure-up-41-electronic-devices-on-your-flight-and-the-explosive-growth-of-one-social-network-in-2012/</link>
		<comments>http://www.redkitetechnologies.com/2012/12/whats-news-in-the-cloud-cloud-expenditure-up-41-electronic-devices-on-your-flight-and-the-explosive-growth-of-one-social-network-in-2012/#comments</comments>
		<pubDate>Fri, 07 Dec 2012 19:30:49 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cloud News]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[CipherCloud]]></category>
		<category><![CDATA[FCC]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2468</guid>
		<description><![CDATA[What&#8217;s New(s) In The Cloud? Here are some of Redkite&#8217;s favorite Salesforce.com and Cloud related tweets this month! Worried about protecting your data in the Cloud? Andreessen Horowitz betting $30M that CipherCloud is the answer. Ciphercloud gets $30 million to defend the Cloud bit.ly/QHwnRJ&#8212; Forbes.com Tech News (@ForbesTech) December 5, 2012 Cloud expenditure to grow [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><a href="http://www.redkitetechnologies.com/products/redhotnews/"><img class="alignnone size-full wp-image-2251" title="Redhotnews_Icon" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/10/Redhotnews_Icon1-e1350338667336.png" alt="" width="90" height="90" /></a><strong> What&#8217;s New(s) In The Cloud?</strong></h2><br /> <strong>Here are some of Redkite&#8217;s favorite Salesforce.com and Cloud related tweets this month!</strong> <br /> <br /> 

<p>Worried about protecting your data in the Cloud? Andreessen Horowitz betting $30M that CipherCloud is the answer.</p>

<blockquote class="twitter-tweet"><p>Ciphercloud gets $30 million to defend the Cloud <a href="http://t.co/DcnjW79I" title="http://bit.ly/QHwnRJ">bit.ly/QHwnRJ</a></p>&mdash; Forbes.com Tech News (@ForbesTech) <a href="https://twitter.com/ForbesTech/status/276403068562706432" data-datetime="2012-12-05T19:10:01+00:00">December 5, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br />
<p>Cloud expenditure to grow by 41% &#8211; to hit $206 billion by 2016 &#8211; Gartner.  Learn why now is the time from the Cloud Leaders Report.
  </p>

<blockquote class="twitter-tweet"><p>The 2012 Cloud Leaders Report is out! Read where the <a href="https://twitter.com/search/%23cloud">#cloud</a> industry stands and where it’s heading via @<a href="https://twitter.com/channelinsight">channelinsight</a> <a href="http://t.co/uen0Yqgx" title="http://bit.ly/SybqHb">bit.ly/SybqHb</a></p>&mdash; Salesforce Partners (@partnerforce) <a href="https://twitter.com/partnerforce/status/276398713025478657" data-datetime="2012-12-05T18:52:43+00:00">December 5, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 
<p>Google Chrome Users &#8211; the calendar plug-in you&#8217;ve been waiting for. 1-click to add your conference line details.</p>

<blockquote class="twitter-tweet"><p>I just published this handy <a href="https://twitter.com/search/%23Chrome">#Chrome</a> extension for easily adding in your conference line details to new events. <a href="https://t.co/YI3OXYiv" title="https://chrome.google.com/webstore/detail/conference-call-details-2/jkogbmlpekdanmbabamekneefmofmjil?hl=en-US">chrome.google.com/webstore/detai…</a></p>&mdash; Kevin O&#8217;Hara (@kevino80) <a href="https://twitter.com/kevino80/status/276896947418304512" data-datetime="2012-12-07T03:52:31+00:00">December 7, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 
 
<p>The F.C.C. doesn&#8217;t want to you to store all of your electronic devices during take-off and is asking the F.A.A. to reconsider.
</p>

<blockquote class="twitter-tweet"><p>FCC chair criticizes rule against using tablets during takeoff <a href="http://t.co/5EfRbCw8" title="http://ars.to/QLoI4L">ars.to/QLoI4L</a> by @<a href="https://twitter.com/binarybits">binarybits</a></p>&mdash; Ars Technica (@arstechnica) <a href="https://twitter.com/arstechnica/status/276899089520680960" data-datetime="2012-12-07T04:01:02+00:00">December 7, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 
 
<p>The Social Impact of 2012 &#8211; see what network grew by a measly 379,559%</p>

<blockquote class="twitter-tweet"><p>Infographic: A Look Back at Social Sharing in 2012 <a href="http://t.co/ITznDiaY" title="http://socialtimes.com/infographic-a-look-back-at-social-sharing-in-2012_b112550">socialtimes.com/infographic-a-…</a></p>&mdash; SocialTimes (@SocialTimes) <a href="https://twitter.com/SocialTimes/status/276470343680524289" data-datetime="2012-12-05T23:37:21+00:00">December 5, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

<p>Articles sourced on Twitter.com by Jeff</p>

<a href="https://twitter.com/intent/tweet?text=What%27s+News+In+The+Cloud%3F+&#038;url=http://www.redkitetechnologies.com/2012/12/whats-news-in-the-cloud-cloud-expenditure-up-41-electronic-devices-on-your-flight-and-the-explosive-growth-of-one-social-network-in-2012/" target="blank"><img src="http://files.myopera.com/tagawa/blog/twitter_32.png" alt="Twitter button" style="margin:0 8px;vertical-align:middle;">
   Share on Twitter
</a>

<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.redkitetechnologies.com/2012/12/whats-news-in-the-cloud-cloud-expenditure-up-41-electronic-devices-on-your-flight-and-the-explosive-growth-of-one-social-network-in-2012/" target="blank" rel="nofollow"><img src="http://files.myopera.com/tagawa/blog/facebook_32.png" alt="Facebook button" style="margin:0 8px;vertical-align:middle;">Share on Facebook</a>

<a href="http://www.linkedin.com/shareArticle?url=http://www.redkitetechnologies.com/2012/12/whats-news-in-the-cloud-cloud-expenditure-up-41-electronic-devices-on-your-flight-and-the-explosive-growth-of-one-social-network-in-2012/" rel="nofollow" target="blank"><img src="http://files.myopera.com/tagawa/blog/linkedin_32.png" alt="LinkedIn button" style="margin: 8px;vertical-align:middle;">Share on LinkedIn</a>]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2012/12/whats-news-in-the-cloud-cloud-expenditure-up-41-electronic-devices-on-your-flight-and-the-explosive-growth-of-one-social-network-in-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redhot Salesforce.com App –  Round Robin Record Assignment</title>
		<link>http://www.redkitetechnologies.com/2012/11/redhot-salesforce-com-app-round-robin-record-assignment/</link>
		<comments>http://www.redkitetechnologies.com/2012/11/redhot-salesforce-com-app-round-robin-record-assignment/#comments</comments>
		<pubDate>Fri, 30 Nov 2012 17:42:44 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[App Reviews]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Appexchange]]></category>
		<category><![CDATA[Assignment Rules]]></category>
		<category><![CDATA[Force.com Labs]]></category>
		<category><![CDATA[Queues]]></category>
		<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[Service Cloud]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2429</guid>
		<description><![CDATA[App of the Month This month our Redhot Salesforce.com App is Round Robin Record Assignment. Round Robin Record Assignment is perfect for any Organization using Queues who want to distribute records to multiple users in short order. A call center with a large amount of Leads or Cases is a perfect candidate. With the holidays [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><img src="http://www.redkitetechnologies.com/wp-content/uploads/2012/11/60X60-LabsIcon.png" alt="" title="60X60-LabsIcon" width="90" height="90" class="alignnone size-full wp-image-2430" /></a></a> <img title="RedkiteRedhot" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/08/RedHotNewsLogo.png" alt="" width="93" height="27" /></a><strong> App of the Month</strong></h2>
<p>This month our Redhot Salesforce.com App is <a href="http://appexchange.salesforce.com/listingDetail?listingId=a0N3000000178fsEAA" target= "_blank">Round Robin Record Assignment</a>.  Round Robin Record Assignment is perfect for any Organization using Queues who want to distribute records to multiple users in short order.  A call center with a large amount of Leads or Cases is a perfect candidate.  With the holidays quickly approaching, give your organization a free gift from Force.com Labs!</p>

<strong>What is Round Robin Record Assignment?</strong><p>
Rather than selecting Leads or Cases from a queue and accepting ownership, organizations using Round Robin Assignment Groups can have the records automatically assigned to specified users as soon as the record enters a Queue.  For example, if 100 Leads enter Salesforce.com via an integration, and there are 10 active salespeople in the organization, the application will randomly assign ownership of those 100 Leads to each of the 10 users in real time.    
</p>
<strong>What&#8217;s Cool about Round Robin Record Assignment?</strong><p>
Call centers who deal with a high volume of incoming records and don’t have the time to assign ownership can use this tool to enhance productivity.  It also helps prevent users from wasting time and trying to take ownership of the same record at the same time.  It is easy to implement and install, and just as easy to configure.  It is configured using clicks and not code, so business admins can configure it on the fly.  Further, using Salesforce.com configuration such as workflows and validation rules, the application can be customized to specific needs and requirements.  
</p>
<strong>How does Round Robin Assignment Work?</strong><p>

There are two parts to the Assignment Groups configuration. 
When the Application is installed into the Salesforce.com org, a checkbox is created on each user record.  This will denote whether or not the User is active or not.  An active Assignment Group user means records entering the specified Queue can be assigned to them.<br /><br />
The Application also installs three custom objects, the Assignment Groups, Group Members, and AG-Queue.  Using these Custom objects and the Checkbox on the User record, you can specify an existing Queue, the object of incoming records (Cases, Leads, etc), and the Users who are part of the Assignment Group.  For users to be eligible for record assignment, they must not only have the checkbox set to TRUE on their User record, but they must also be an Assignment Group Member.
</p>

<strong>Why Redkite Likes Round Robin Record Assignment?</strong><p>Redkite likes being able to find a quick and easy solution for a common business requirement that isn&#8217;t possible with out of the box Salesforce.com.  The ability for business admins to administer the settings and configuration, as well as the ability to further customize the product allows us to concentrate on other customer needs within Salesforce.com.  

</p>

<p>You can learn more about Round Robin Record Assignment and install it for free on the <a href="http://appexchange.salesforce.com/listingDetail?listingId=a0N3000000178fsEAA">Salesforce.com AppExchange</a>.</p><a href="https://twitter.com/intent/tweet?text=Redhot+Salesforce+App+%2D+Round+Robin+Record+Assignment&#038;url=http://www.redkitetechnologies.com/2012/11/redhot-salesforce-com-app-round-robin-record-assignment/" target="blank"><img src="http://files.myopera.com/tagawa/blog/twitter_32.png" alt="Twitter button" style="margin:0 8px;vertical-align:middle;">
   Share on Twitter
</a>

<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.redkitetechnologies.com/2012/11/redhot-salesforce-com-app-round-robin-record-assignment/" target="blank" rel="nofollow"><img src="http://files.myopera.com/tagawa/blog/facebook_32.png" alt="Facebook button" style="margin:0 8px;vertical-align:middle;">Share on Facebook</a>

<a href="http://www.linkedin.com/shareArticle?url=http://www.redkitetechnologies.com/2012/11/redhot-salesforce-com-app-round-robin-record-assignment" rel="nofollow" target="blank"><img src="http://files.myopera.com/tagawa/blog/linkedin_32.png" alt="LinkedIn button" style="margin: 8px;vertical-align:middle;">Share on LinkedIn</a>]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2012/11/redhot-salesforce-com-app-round-robin-record-assignment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bright Salesforce.com Ideas &#8211; November 2012</title>
		<link>http://www.redkitetechnologies.com/2012/11/bright-salesforce-com-ideas-november-2012/</link>
		<comments>http://www.redkitetechnologies.com/2012/11/bright-salesforce-com-ideas-november-2012/#comments</comments>
		<pubDate>Wed, 21 Nov 2012 18:50:51 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2424</guid>
		<description><![CDATA[Bright Ideas: Salesforce Ideas are a good way to show Salesforce that there are some features we can&#8217;t live without.  Here are a few more feature requests we stand behind: Sorting Related Lists by Multiple Criteria  Currently Salesforce only allows you to sort a related list by one field. The ability to sort the lists by [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><img src="http://www.redkitetechnologies.com/wp-content/uploads/2012/08/idea-1.png" alt="" title="idea (1)" width="90" height="88" class="aligncenter size-full wp-image-2069" /></a></a><strong>Bright Ideas:</strong></h2>
<a href="http://success.salesforce.com/ideaHome">Salesforce Ideas</a> are a good way to show Salesforce that there are some features we can&#8217;t live without.  Here are a few more feature requests we stand behind:<br /><br />
<br />
<div>
<h4 id="ideaTitle"><a href="http://success.salesforce.com/ideaView?id=08730000000BrfNAAS" target="_blank">Sorting Related Lists by Multiple Criteria</a> <a href="http://success.salesforce.com/ideaView?id=08730000000BrfNAAS" target="_blank" rel="attachment wp-att-1803"><img title="Sorting Related Lists by Multiple Criteria" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/07/Capture2.png" alt="" width="79" height="50" align="right" /></a></h4>
Currently Salesforce only allows you to sort a related list by one field. The ability to sort the lists by multiple criteria, along with the choice for each to be ascending or descending, would allow for better organization of data and would be clearer and more customized for the end user.

<br />
<br />




<div>
<h4 id="ideaTitle"><a href="http://success.salesforce.com/ideaView?id=08730000000BrYyAAK" target="_blank">Warnings for Unsaved Changes</a> <a href="http://success.salesforce.com/ideaView?id=08730000000BrYyAAK" target="_blank" rel="attachment wp-att-1803"><img title="Warnings for Unsaved Changes" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/07/Capture2.png" alt="" width="79" height="50" align="right" /></a></h4>
Everyone has done it… You edit data, forget to save, then navigate away from the page and lose the information you just entered.  A warning message for users who are about to leave a page with unsaved changes would make inline editing more useful and less potentially hazardous.  As one user mentioned, this feature would be best suited if it could be toggled on/off, so that users who want to save time aren’t bothered by unnecessary warnings.
<br /><br />
</div>

<div>
<h4 id="ideaTitle"><a href="http://success.salesforce.com/ideaView?id=08730000000BrlOAAS" target="_blank">Save Draft Emails</a> <a href="http://success.salesforce.com/ideaView?id=08730000000BrlOAAS" target="_blank" rel="attachment wp-att-1803"><img title="Save Draft Emails" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/07/Capture2.png" alt="" width="79" height="50" align="right" /></a></h4>
Salesforce does not currently have a “Save” option for email drafts. This feature would make it easier to write longer emails, and for emails which require the user to look for information elsewhere in their system while composing them. This idea is currently “Under Consideration” by Salesforce, so your votes could help push it up their priority list!

<br />
<br />
<div>
<h4 id="ideaTitle"><a href="http://success.salesforce.com/ideaView?id=08730000000BrcUAAS" target="_blank">Assign Default Dashboards to Home Page Layout</a> <a href="http://success.salesforce.com/ideaView?id=08730000000BrcUAAS" target="_blank" rel="attachment wp-att-1803"><img title="Assign Default Dashboards to Home Page Layout" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/07/Capture2.png" alt="" width="79" height="50" align="right" /></a></h4>
This feature would allow System Administrators to assign a default dashboard for each Profile’s home page. In order to have a unified home page currently, each user needs to individually assign the dashboard to their home page; there is no way to assign the dashboard to multiple users at once.  This feature would save time for administrators and help companies stay on the same page about important information.

<br />
<br />]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2012/11/bright-salesforce-com-ideas-november-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s News in the Cloud?  Salesforce Touch, Social election strategies, and how IT teams are adapting to the cloud</title>
		<link>http://www.redkitetechnologies.com/2012/11/whats-news-in-the-cloud-salesforce-touch-social-election-strategies-and-how-it-teams-are-adapting-to-the-cloud/</link>
		<comments>http://www.redkitetechnologies.com/2012/11/whats-news-in-the-cloud-salesforce-touch-social-election-strategies-and-how-it-teams-are-adapting-to-the-cloud/#comments</comments>
		<pubDate>Fri, 16 Nov 2012 16:17:09 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cloud News]]></category>

		<guid isPermaLink="false">http://www.redkitetechnologies.com/?p=2394</guid>
		<description><![CDATA[What&#8217;s New(s) In The Cloud? Here are some of Redkite&#8217;s favorite Salesforce.com and Cloud related tweets this month! How mobile is your organization? With Salesforce Touch for iPad now available information is faster and it’s easier to stay connected. Salesforce Touch is Here: bit.ly/TL9VH7 Download Touch for iPad today: bit.ly/SFcGa3 #winter13&#8212; salesforce.com (@salesforce) November 8, 2012 As [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><a href="http://www.redkitetechnologies.com/products/redhotnews/"><img class="alignnone size-full wp-image-2251" title="Redhotnews_Icon" src="http://www.redkitetechnologies.com/wp-content/uploads/2012/10/Redhotnews_Icon1-e1350338667336.png" alt="" width="90" height="90" /></a><strong> What&#8217;s New(s) In The Cloud?</strong></h2><br /> <strong>Here are some of Redkite&#8217;s favorite Salesforce.com and Cloud related tweets this month!</strong> <br /> <br /> 

<p>How mobile is your organization? With Salesforce Touch for iPad now available information is faster and it’s easier to stay connected.</p>

<blockquote class="twitter-tweet"><p>Salesforce Touch is Here: <a href="http://t.co/4QjhqGFM" title="http://bit.ly/TL9VH7">bit.ly/TL9VH7</a> Download Touch for iPad today: <a href="http://t.co/pned8nlb" title="http://bit.ly/SFcGa3">bit.ly/SFcGa3</a> <a href="https://twitter.com/search/%23winter13">#winter13</a></p>&mdash; salesforce.com (@salesforce) <a href="https://twitter.com/salesforce/status/266584963795808256" data-datetime="2012-11-08T16:56:22+00:00">November 8, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br />
<p>As the 2012 ends our future is promising. Cloud computing and mobility are helping companies grow and continue to influence decisions.  </p>

<blockquote class="twitter-tweet"><p>Cloud computing and enterprise software forecast update, 2012 <a href="http://t.co/Xp7BHHzT" title="http://bit.ly/TQgd8u">bit.ly/TQgd8u</a> via @<a href="https://twitter.com/louiscolumbus">louiscolumbus</a></p>&mdash; Forbes.com Tech News (@ForbesTech) <a href="https://twitter.com/ForbesTech/status/267038537264803841" data-datetime="2012-11-09T22:58:43+00:00">November 9, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 
<p>An interesting conversation about how IT teams are responding and adapting to cloud computing.</p>

<blockquote class="twitter-tweet"><p><a href="https://twitter.com/search/%23Cloud">#Cloud</a> <a href="https://twitter.com/search/%23News">#News</a> Filling the SLA Gap in the Cloud: User expectations with respect to performance are always a c&#8230; <a href="http://t.co/RpOrF0Qw" title="http://bit.ly/Tl6MMa">bit.ly/Tl6MMa</a> <a href="https://twitter.com/search/%23TCN">#TCN</a></p>&mdash; The Cloud Network(@TheCloudNetwork) <a href="https://twitter.com/TheCloudNetwork/status/267304923543248897" data-datetime="2012-11-10T16:37:14+00:00">November 10, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 
 
<p>Great communication skills, passionate about technology, flexible.  These are just a few qualities of a good CRM Administrator.  How do your skills match up?  If you’re looking for a CRM Administrator, what qualities are a must for your organization?</p>

<blockquote class="twitter-tweet"><p>Top Qualities in a Great CRM Administrator <a href="http://t.co/9yCfFf3u" title="http://bit.ly/ZeIy9M">bit.ly/ZeIy9M</a></p>&mdash; The Connected Cause (@TheConnectCause) <a href="https://twitter.com/TheConnectCause/status/266983519794913280" data-datetime="2012-11-09T19:20:06+00:00">November 9, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

 <br /> 
 
<p>No matter how you voted this year America, one thing that we can all agree on is that how we communicate is changing. Check out the different technical strategies the candidates used to send their message.</p>

<blockquote class="twitter-tweet"><p>Obama vs. Romney.Cloud vs. On Premise. <a href="http://t.co/ppHT2K6W" title="http://bits.blogs.nytimes.com/2012/11/08/the-obama-campaigns-technology-the-force-multiplier/">bits.blogs.nytimes.com/2012/11/08/the…</a>Vs.<a href="http://t.co/twDp1q60" title="http://arstechnica.com/information-technology/2012/11/inside-team-romneys-whale-of-an-it-meltdown/">arstechnica.com/information-te…</a></p>&mdash; Marc Benioff (@Benioff) <a href="https://twitter.com/Benioff/status/267048343069409281" data-datetime="2012-11-09T23:37:41+00:00">November 9, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
]]></content:encoded>
			<wfw:commentRss>http://www.redkitetechnologies.com/2012/11/whats-news-in-the-cloud-salesforce-touch-social-election-strategies-and-how-it-teams-are-adapting-to-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
