<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Forcetalks | Vikas Kumar | Activity</title>
	<link>http://52.205.218.194/vikasm-mishraalgoworks-com/activity/</link>
	<atom:link href="http://52.205.218.194/vikasm-mishraalgoworks-com/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Vikas Kumar.</description>
	<lastBuildDate>Sun, 21 Jun 2026 08:12:30 +0530</lastBuildDate>
	<generator>https://buddypress.org/?v=2.16.0</generator>
	<language>en-US</language>
	<ttl>30</ttl>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>2</sy:updateFrequency>
		
								<item>
				<guid isPermaLink="false">d3d775aaec37fd95da9e2011119629dc</guid>
				<title>Vikas Kumar replied to the discussion In Salesforce, can I find out if the current user has access to a record without querying? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/can-i-find-out-if-the-current-user-has-access-to-a-record-without-querying/#post-20153</link>
				<pubDate>Mon, 15 May 2017 05:09:32 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/in-salesforce-can-i-find-out-if-the-current-user-has-access-to-a-record-without-querying/#post-20153"><span class="bb-reply-lable">Reply to</span> In Salesforce, can I find out if the current user has access to a record without querying?</a></p> <div class="bb-content-inr-wrap"><p>Hi Saurabh,<br />
To find out if a particular user has Edit access to a record, use the UserRecordAccess object. This object is available in API version 24.0 and later. You can use SOQL to query this object to find out if the user has edit access to the record in question.</p>
<p><strong>SELECT RecordId FROM UserRecordAccess WHERE UserId=:UserInfo.getUserId()&hellip;</strong><span class="activity-read-more" id="activity-read-more-17189"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/can-i-find-out-if-the-current-user-has-access-to-a-record-without-querying/#post-20153" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e5a4c3ce73e0b9860750a4cc168ae10d</guid>
				<title>Vikas Kumar replied to the discussion How to make a Search Bar using Javascript in Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-make-a-search-bar-using-javascript-in-salesforce/#post-18610</link>
				<pubDate>Thu, 23 Mar 2017 15:00:37 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-make-a-search-bar-using-javascript-in-salesforce/#post-18610"><span class="bb-reply-lable">Reply to</span> How to make a Search Bar using Javascript in Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Manpreet,</p>
<p>you can try something like this</p>
<p><strong>Page</strong></p>
<p>&lt;apex:page controller=&#8221;SearchJavascriptController&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;</p>
<p>* {<br />
box-sizing: border-box;<br />
}</p>
<p>#myInput {<br />
background-image: url(&#8216;/css/searchicon.png&#8217;);<br />
background-position: 10px 10px;<br />
background-repeat: no-repeat;<br />
width: 100%;<br />
font-size: 16px;<br />
padding: 12px 20px 12px 40px;<br />
border:&hellip;<span class="activity-read-more" id="activity-read-more-15921"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-to-make-a-search-bar-using-javascript-in-salesforce/#post-18610" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">57a15dfb69a5bc00498b52a36ca45661</guid>
				<title>Vikas Kumar replied to the discussion How can we print a list returned by salesforce Remote Action in PageBlockTable? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-print-a-list-returned-by-salesforce-remote-action-in-pageblocktable/#post-18340</link>
				<pubDate>Fri, 17 Feb 2017 06:04:01 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-print-a-list-returned-by-salesforce-remote-action-in-pageblocktable/#post-18340"><span class="bb-reply-lable">Reply to</span> How can we print a list returned by salesforce Remote Action in PageBlockTable?</a></p> <div class="bb-content-inr-wrap"><p>Hi sushant,</p>
<p>Here is the sample example for your requirement</p>
<p>function getRecordListJS() {<br />
Visualforce.remoting.Manager.invokeAction(<br />
&#8216;{!$RemoteAction.AccountRemoter.getRecordList}&#8217;,<br />
recordName,<br />
function(lstresult, event){<br />
for (var n=0; n&lt;lstresult.length; n++){<br />
var result = lstresult[n];<br />
},{escape: true});<br />
}</p>
<p>Hope it may helps</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">278e15ffce424850a755ecafbcb54e21</guid>
				<title>Vikas Kumar replied to the discussion How to add Error messages on  Vf Page using Apex in Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-add-error-messages-on-vf-page-using-apex-in-salesforce/#post-18339</link>
				<pubDate>Fri, 17 Feb 2017 06:00:57 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-add-error-messages-on-vf-page-using-apex-in-salesforce/#post-18339"><span class="bb-reply-lable">Reply to</span> How to add Error messages on  Vf Page using Apex in Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi sushant,</p>
<p>You can do something like this</p>
<p>public with sharing class ErrorMessageInVfController {<br />
public Account acc{get;set;}<br />
public ErrorMessageInVfController(ApexPages.StandardController controller) {<br />
acc = new Account();<br />
}</p>
<p>public void save(){<br />
if(acc.name == &#8221; || acc.name ==&hellip;<span class="activity-read-more" id="activity-read-more-15679"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-to-add-error-messages-on-vf-page-using-apex-in-salesforce/#post-18339" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">07f233b3eb94f1165de485e63ad5dbf3</guid>
				<title>Vikas Kumar replied to the discussion What are the advantages of making community users in salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-are-the-advantages-of-making-community-users-in-salesforce/#post-18338</link>
				<pubDate>Fri, 17 Feb 2017 05:57:49 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-are-the-advantages-of-making-community-users-in-salesforce/#post-18338"><span class="bb-reply-lable">Reply to</span> What are the advantages of making community users in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi sushant,</p>
<p>Here are five benefits of connecting with customers through communities:</p>
<p><strong>1. Save Time</strong></p>
<p>By creating a community platform for customers to share, you give your customers access to not only your knowledge base, but other community members thoughts, as well as those of your employees and partners, offering the ability to combine&hellip;<span class="activity-read-more" id="activity-read-more-15678"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/what-are-the-advantages-of-making-community-users-in-salesforce/#post-18338" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9c197ef266859085578dcf1275276fd7</guid>
				<title>Vikas Kumar started the discussion How to pass account id as a parameter to custom button on standard Account Detail Page in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-pass-account-id-as-a-parameter-to-custom-button-on-standard-account-detail-page/</link>
				<pubDate>Thu, 16 Feb 2017 14:57:29 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-pass-account-id-as-a-parameter-to-custom-button-on-standard-account-detail-page-in-salesforce/">How to pass account id as a parameter to custom button on standard Account Detail Page in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>How to pass account id as a parameter to custom button on standard Account Detail Page ?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">0e4d33d532ff2191b57d9a4ee02a16a4</guid>
				<title>Vikas Kumar started the discussion How can we define Hyper link on Standard Account Detail Page in salesforce ? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-define-hyper-link-on-standard-account-detail-page/</link>
				<pubDate>Thu, 16 Feb 2017 14:55:07 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-define-hyper-link-on-standard-account-detail-page-in-salesforce/">How can we define Hyper link on Standard Account Detail Page in salesforce ?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>How can we define Hyper link on Standard Account Detail Page ?</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">07b5640d67e72d0a244ceb2c24f07f46</guid>
				<title>Vikas Kumar started the discussion How to display Map values on Visualforce Page ? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-display-map-values-on-visualforce-page/</link>
				<pubDate>Thu, 16 Feb 2017 14:53:02 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-display-map-values-on-visualforce-page/">How to display Map values on Visualforce Page ?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>How to display Map values on Visualforce Page ?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1b0ee93c799e323a1c0502e6bd7492ec</guid>
				<title>Vikas Kumar started the discussion How can we login as a community user in salesforce in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-login-as-a-community-user-in-salesforce/</link>
				<pubDate>Wed, 15 Feb 2017 14:34:41 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-login-as-a-community-user-in-salesforce/">How can we login as a community user in salesforce</a></p> <div class="bb-content-inr-wrap"><p>Hi all,</p>
<p>How can we login as a community user in salesforce ?</p>
<p>&nbsp;</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">dbe968b1de468c6e42752014da546202</guid>
				<title>Vikas Kumar started the discussion How can we use lightning component in salesforce community in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-use-lightning-component-in-salesforce-community/</link>
				<pubDate>Wed, 15 Feb 2017 14:33:25 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-use-lightning-component-in-salesforce-community/">How can we use lightning component in salesforce community</a></p> <div class="bb-content-inr-wrap"><p>Hi all,</p>
<p>How can we use lightning component in salesforce community ?</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">562e4eddddbe6ad97f5212835a9ddd66</guid>
				<title>Vikas Kumar started the discussion How to restrict input to numbers only in inputText field visualforce in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-restrict-input-to-numbers-only-in-inputtext-field-visualforce/</link>
				<pubDate>Wed, 15 Feb 2017 14:31:54 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-restrict-input-to-numbers-only-in-inputtext-field-visualforce/">How to restrict input to numbers only in inputText field visualforce</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>How to restrict input to numbers only in inputText field visualforce?</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">750fcc03bb5e75cfe1c056c4123e1d75</guid>
				<title>Vikas Kumar started the discussion How to add error message to specific inputText / inputfield in visualforce page in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-add-error-message-to-specific-inputtext-inputfield-in-visualforce-page/</link>
				<pubDate>Wed, 15 Feb 2017 14:29:00 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-add-error-message-to-specific-inputtext-inputfield-in-visualforce-page/">How to add error message to specific inputText / inputfield in visualforce page</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>How to add error message to specific inputText / inputfield in visualforce page?</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">317dbc629b96fe689c96c5d846d1721f</guid>
				<title>Vikas Kumar started the discussion How to show Particular div to be on top of everything in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-show-particular-div-to-be-on-top-of-everything/</link>
				<pubDate>Wed, 15 Feb 2017 14:27:10 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-show-particular-div-to-be-on-top-of-everything/">How to show Particular div to be on top of everything</a></p> <div class="bb-content-inr-wrap"><p>Hi all,</p>
<p>Using CSS I want a div to be on top of everything on a visualforce page</p>
<p>thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f2fed7cce6d755680ff4cb2dec6ce23e</guid>
				<title>Vikas Kumar started the discussion Apex Param &#34;assignTo&#34; attribute to function correctly with command button in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/apex-param-assignto-attribute-to-function-correctly-with-command-button/</link>
				<pubDate>Wed, 15 Feb 2017 14:25:17 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/apex-param-assignto-attribute-to-function-correctly-with-command-button/">Apex Param &quot;assignTo&quot; attribute to function correctly with command button</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>Not able to assign parameter without using re-render attributes with command button</p>
<p>plz suggest other way out to do so</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">156d580e6c8ddd8b257db49e95824952</guid>
				<title>Vikas Kumar replied to the discussion Which tool is used to scan the subject line and body of the email message in Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/which-tool-is-used-to-scan-the-subject-line-and-body-of-the-email-message-in-salesforce/#post-18270</link>
				<pubDate>Tue, 14 Feb 2017 07:48:01 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/which-tool-is-used-to-scan-the-subject-line-and-body-of-the-email-message-in-salesforce/#post-18270"><span class="bb-reply-lable">Reply to</span> Which tool is used to scan the subject line and body of the email message in Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi pranav,</p>
<p>EasilyDo &#8211; Sales Assistant to Automate Data Entry is used to scan the subject line and body of the email message in Salesforce.</p>
<p>for more info :-https://appexchange.salesforce.com/listingDetail?listingId=a0N3000000B561eEAB</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b51204d6a37f5d9b2053882ac9db1b91</guid>
				<title>Vikas Kumar replied to the discussion What are Data Integration Rules?What are the uses of it? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-are-data-integration-ruleswhat-are-the-uses-of-it/#post-18269</link>
				<pubDate>Tue, 14 Feb 2017 07:26:06 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-are-data-integration-ruleswhat-are-the-uses-of-it/#post-18269"><span class="bb-reply-lable">Reply to</span> What are Data Integration Rules?What are the uses of it?</a></p> <div class="bb-content-inr-wrap"><p>Hi sushant,<br />
Data integration rules are provided by a data service to control how the service updates your Salesforce records. Rules tell the data service how to find records to update and which updates to make. Rules also control how updates affect other features, such as triggers and workflow rules.</p>
<p>for more info go&hellip;<span class="activity-read-more" id="activity-read-more-15629"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/what-are-data-integration-ruleswhat-are-the-uses-of-it/#post-18269" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ccefd831daebfed7f2c7610af42270af</guid>
				<title>Vikas Kumar replied to the discussion How to specify multiple responses in SOAP callout? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-specify-multiple-responses-in-soap-callout/#post-18268</link>
				<pubDate>Tue, 14 Feb 2017 07:23:48 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-specify-multiple-responses-in-soap-callout/#post-18268"><span class="bb-reply-lable">Reply to</span> How to specify multiple responses in SOAP callout?</a></p> <div class="bb-content-inr-wrap"><p>Hi sushant,</p>
<p>You could create a constructor for example:</p>
<p>@isTest<br />
global class PuchaseWSMock_IsTest implements WebServiceMock {</p>
<p>public String type;</p>
<p>global PuchaseWSMock_IsTest(final String type){<br />
this.type = type;<br />
}</p>
<p>global void doInvoke(Object stub,<br />
Object request,<br />
Map&lt;String, Object&gt; response,<br />
String endpoint,<br />
String&hellip;<span class="activity-read-more" id="activity-read-more-15628"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-to-specify-multiple-responses-in-soap-callout/#post-18268" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f34e5ab5ef69bbf13a3a05d2de9f9f0c</guid>
				<title>Vikas Kumar started the discussion How can we achieve conditional rollback on saving multiple hierarchy records ? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-achieve-conditional-rollback-on-saving-multiple-hierarchy-records/</link>
				<pubDate>Mon, 13 Feb 2017 14:19:12 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-achieve-conditional-rollback-on-saving-multiple-hierarchy-records/">How can we achieve conditional rollback on saving multiple hierarchy records ?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>i am in a scenerio i wanted to save records based on condition like we have 5 objects</p>
<p>on failure of obj5 records upto 4 get saved,</p>
<p>similarly on failure of obj4 records upto 3 get saved,</p>
<p>and so on ,</p>
<p>but on failure of obj2, obj1 record  will not get saved</p>
<p>thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d10b819af53d34047110930582e66e17</guid>
				<title>Vikas Kumar started the discussion How to save blank spaces in text area in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-save-blank-spaces-in-text-area/</link>
				<pubDate>Mon, 13 Feb 2017 13:37:04 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-save-blank-spaces-in-text-area/">How to save blank spaces in text area</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>how can we save blank spaces in text area ?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4c9cd3eed85d5a9c46bd0957656b3b33</guid>
				<title>Vikas Kumar started the discussion how can we  Use Heroku Connect to Sync with Salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-use-heroku-connect-to-sync-with-salesforce/</link>
				<pubDate>Mon, 13 Feb 2017 13:33:55 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-use-heroku-connect-to-sync-with-salesforce/">how can we  Use Heroku Connect to Sync with Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi All ,</p>
<p>how can we Use Heroku Connect to Sync with Salesforce?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">5ba132cc8b653144d7a1fd912a34044c</guid>
				<title>Vikas Kumar replied to the discussion how to display the result of sosl in Salesforce Visualforce page? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-display-the-result-of-sosl-in-salesforce-visualforce-page/#post-18231</link>
				<pubDate>Wed, 08 Feb 2017 12:45:25 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-display-the-result-of-sosl-in-salesforce-visualforce-page/#post-18231"><span class="bb-reply-lable">Reply to</span> how to display the result of sosl in Salesforce Visualforce page?</a></p> <div class="bb-content-inr-wrap"><p>Hi gaurav;</p>
<p>you can do something like this</p>
<p>&lt;apex:page StandardController=&#8221;Contact&#8221; extensions=&#8221;tstpopup1&#8243;&gt;</p>
<p>&lt;apex:form&gt;</p>
<p>&lt;apex:commandButton action=&#8221;{!runQuery}&#8221; value=&#8221;Go&#8221;/&gt;</p>
<p>&lt;apex:pageBlock &gt;<br />
&lt;apex:pageBlockSection columns=&#8221;1&#8243;&gt;<br />
&lt;apex:pageBlockTable value=&#8221;{!accounts}&#8221; var=&#8221;account&#8221;&gt;<br />
&lt;apex:column&hellip;<span class="activity-read-more" id="activity-read-more-15565"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-to-display-the-result-of-sosl-in-salesforce-visualforce-page/#post-18231" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">61a034ed32178e3daf29818f7c842da0</guid>
				<title>Vikas Kumar replied to the discussion What is Trigger Factory?How can we use this? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-trigger-factoryhow-can-we-use-this/#post-18230</link>
				<pubDate>Wed, 08 Feb 2017 12:29:43 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-trigger-factoryhow-can-we-use-this/#post-18230"><span class="bb-reply-lable">Reply to</span> What is Trigger Factory?How can we use this?</a></p> <div class="bb-content-inr-wrap"><p>Hello sushant,</p>
<p>Trigger factory implementation in Salesforce. Please check below post for code also<br />
1) </p>
<blockquote class="wp-embedded-content" data-secret="ki0gihRQRN"><p><a target='_blank' href="https://www.infallibletechie.com/2015/12/trigger-factory-implementation-in.html" rel="nofollow">Trigger factory implementation in Salesforce</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; visibility: hidden;" title="&#8220;Trigger factory implementation in Salesforce&#8221; &#8212; InfallibleTechie" src="https://www.infallibletechie.com/2015/12/trigger-factory-implementation-in.html/embed#?secret=F8TEXIBrgE#?secret=ki0gihRQRN" data-secret="ki0gihRQRN" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br />
2) <a target='_blank' href="http://salesforcecookcode.blogspot.in/2014/11/trigger-factory.html" rel="nofollow">http://salesforcecookcode.blogspot.in/2014/11/trigger-factory.html</a></p>
<p>Please check below post for same trigger&hellip;<span class="activity-read-more" id="activity-read-more-15564"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/what-is-trigger-factoryhow-can-we-use-this/#post-18230" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d3e457e8b3f9b00b869863ccb1cd1e04</guid>
				<title>Vikas Kumar replied to the discussion What is the best way to parse the JSON response that comes from google map? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-the-best-way-to-parse-the-json-response-that-comes-from-google-map/#post-18229</link>
				<pubDate>Wed, 08 Feb 2017 12:28:23 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-best-way-to-parse-the-json-response-that-comes-from-google-map/#post-18229"><span class="bb-reply-lable">Reply to</span> What is the best way to parse the JSON response that comes from google map?</a></p> <div class="bb-content-inr-wrap"><p>Hi Sushant,</p>
<p>Just deserialize:</p>
<p>public class Response { final Geometry geometry; }<br />
public class Geometry { final Location location; }<br />
public class Location { final Decimal latitude, longitude; }<br />
Granted, your JSON payload is not valid as currently specified. The above would work though if your structure boils down to:</p>
<p>{<br />
&#8220;geometry&#8221;:&hellip;<span class="activity-read-more" id="activity-read-more-15563"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/what-is-the-best-way-to-parse-the-json-response-that-comes-from-google-map/#post-18229" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7f1fa9561799b0627ba8b4c150293898</guid>
				<title>Vikas Kumar replied to the discussion How to write test method for wrapper class? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-write-test-method-for-wrapper-class/#post-18228</link>
				<pubDate>Wed, 08 Feb 2017 12:24:06 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-write-test-method-for-wrapper-class/#post-18228"><span class="bb-reply-lable">Reply to</span> How to write test method for wrapper class?</a></p> <div class="bb-content-inr-wrap"><p>Hello sushant,</p>
<p>you can do something like this</p>
<p>Apex Class:</p>
<p>public class EmployeeController {<br />
public static void assignSequence(List&lt;Employee__c&gt; listEmployee, Decimal startNum) {<br />
Decimal initial = startNum;<br />
List&lt;EmployeeWrapper&gt; listEmployeeWrapper = new List&lt;EmployeeWrapper&gt;();</p>
<p>for(Employee__c emp : listEmployee)&hellip;<span class="activity-read-more" id="activity-read-more-15562"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-to-write-test-method-for-wrapper-class/#post-18228" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">0f84837245cecfae91e0a7a91b2b571d</guid>
				<title>Vikas Kumar replied to the discussion What is Home Page Component in salesforce?what are the uses of it? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-home-page-component-in-salesforcewhat-are-the-uses-of-it/#post-18227</link>
				<pubDate>Wed, 08 Feb 2017 12:21:19 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-home-page-component-in-salesforcewhat-are-the-uses-of-it/#post-18227"><span class="bb-reply-lable">Reply to</span> What is Home Page Component in salesforce?what are the uses of it?</a></p> <div class="bb-content-inr-wrap"><p>Hi sushant;</p>
<p>Home Page Component</p>
<p>It Represents the metadata associated with a home page component. You can customize the Home tab to include components such as sidebar links, a company logo, a dashboard snapshot, or custom components that you create. For more information, see “Customizing Home Tab Page Layouts” in the Salesforce online help.&hellip;<span class="activity-read-more" id="activity-read-more-15561"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/what-is-home-page-component-in-salesforcewhat-are-the-uses-of-it/#post-18227" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1c15708a2de2b902d1eaf526c4a9a5d2</guid>
				<title>Vikas Kumar started the discussion How to upload Documents in Adobe sign through its Api in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-upload-documents-in-adobe-sign-through-its-api/</link>
				<pubDate>Tue, 07 Feb 2017 14:42:00 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-upload-documents-in-adobe-sign-through-its-api/">How to upload Documents in Adobe sign through its Api</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>How to upload Documents in Adobe sign through its Api?</p>
<p>thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2e76c3af54525a236fca30810a86f5ba</guid>
				<title>Vikas Kumar started the discussion How to send base 64 file in post request using postman in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-send-base-64-file-in-post-request-using-postman/</link>
				<pubDate>Tue, 07 Feb 2017 14:40:27 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-send-base-64-file-in-post-request-using-postman/">How to send base 64 file in post request using postman</a></p> <div class="bb-content-inr-wrap"><p>Hi all,</p>
<p>How to send base 64 file in post request using postman?</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">532145550a0dd48dc0664c3b1be59c1f</guid>
				<title>Vikas Kumar started the discussion how to encode and decode files to base 64 format in salesforce in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-encode-and-decode-files-to-base-64-format-in-salesforce/</link>
				<pubDate>Tue, 07 Feb 2017 14:39:28 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-encode-and-decode-files-to-base-64-format-in-salesforce/">how to encode and decode files to base 64 format in salesforce</a></p> <div class="bb-content-inr-wrap"><p>Hi all,</p>
<p>How to encode and decode files to base 64 format in salesforce</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">15550ef0af68dcfadfa442236772ad53</guid>
				<title>Vikas Kumar started the discussion How can we  pull a specific directory From Bit bucket in Salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-pull-a-specific-directory-from-bit-bucket/</link>
				<pubDate>Tue, 31 Jan 2017 13:58:45 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-pull-a-specific-directory-from-bit-bucket-in-salesforce/">How can we  pull a specific directory From Bit bucket in Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>How can we pull a specific directory From Bit bucket</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">bb367bd4de9655393f80c34fff861e1c</guid>
				<title>Vikas Kumar started the discussion How to roll back Git Commit in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-roll-back-git-commit/</link>
				<pubDate>Tue, 31 Jan 2017 13:55:06 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-roll-back-git-commit-in-salesforce/">How to roll back Git Commit in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>how can we roll back Git Commit</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">447cfc63bbe40fbae8713de1c08d019a</guid>
				<title>Vikas Kumar replied to the discussion Display related contacts in google map for an account in salesforce in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/display-related-contacts-in-google-map-for-an-account/#post-18120</link>
				<pubDate>Tue, 31 Jan 2017 13:50:29 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/display-related-contacts-in-google-map-for-an-account-in-salesforce/#post-18120"><span class="bb-reply-lable">Reply to</span> Display related contacts in google map for an account in salesforce</a></p> <div class="bb-content-inr-wrap"><p>Hi Kumar,</p>
<p>&lt;apex:page standardController=&#8221;Account&#8221; extensions=&#8221;ContactsOnGoogleMapController&#8221; showHeader=&#8221;false&#8221; sidebar=&#8221;false&#8221; standardStylesheets=&#8221;false&#8221;&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;https://maps.googleapis.com/maps/api/js?sensor=false&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var mapicon = JSON.parse(&#8216;{!contactJson}&#8217;);<br />
var url&hellip;<span class="activity-read-more" id="activity-read-more-15493"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/display-related-contacts-in-google-map-for-an-account/#post-18120" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">6a6eae68ae5e31fd68c0a603fd68d3e1</guid>
				<title>Vikas Kumar replied to the discussion Difference between window.parent.location and window.top.location in salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/difference-between-window-parent-location-and-window-top-location/#post-18118</link>
				<pubDate>Tue, 31 Jan 2017 13:48:49 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/difference-between-window-parent-location-and-window-top-location-in-salesforce/#post-18118"><span class="bb-reply-lable">Reply to</span> Difference between window.parent.location and window.top.location in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Sushant,</p>
<p>window.location.href returns the location of the current page.</p>
<p>top.location.href (which is an alias of window.top.location.href) returns the location of the topmost window in the window hierarchy. If a window has no parent, top is a reference to itself (in other words, window === window.top).</p>
<p>top is useful both when you&#8217;re&hellip;<span class="activity-read-more" id="activity-read-more-15491"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/difference-between-window-parent-location-and-window-top-location/#post-18118" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">bae6f75fc65f3b86bf1fcdd6a7230ac0</guid>
				<title>Vikas Kumar started the discussion What is Apex cookie class And how to Use it in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-apex-cookie-class-and-how-to-use-it/</link>
				<pubDate>Tue, 31 Jan 2017 13:46:39 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-apex-cookie-class-and-how-to-use-it-in-salesforce/">What is Apex cookie class And how to Use it in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>What is Apex cookie class And how to Use it ?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ca6b7db66e1cad572bab80c40d3d1448</guid>
				<title>Vikas Kumar started the discussion What is Apex crypto class and how to use it in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-apex-crypto-class-and-how-to-use-it/</link>
				<pubDate>Tue, 31 Jan 2017 13:45:43 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-apex-crypto-class-and-how-to-use-it-in-salesforce/">What is Apex crypto class and how to use it in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>What is Apex crypto class and how to use it</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f13ec9c288c67946b4dbeb5061f7a7f6</guid>
				<title>Vikas Kumar started the discussion How to get GeoCodes from From address using Apex in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-get-geocodes-from-from-address-using-apex/</link>
				<pubDate>Mon, 30 Jan 2017 14:51:22 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-get-geocodes-from-from-address-using-apex-in-salesforce/">How to get GeoCodes from From address using Apex in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>How can we  get GeoCodes from From address using Apex code using GoogleMap Integration</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1f4d2f6fb33065a17b19d5ef46442284</guid>
				<title>Vikas Kumar started the discussion How to display list of accounts on google map in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-display-list-of-accounts-on-google-map/</link>
				<pubDate>Mon, 30 Jan 2017 14:45:33 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-display-list-of-accounts-on-google-map-in-salesforce/">How to display list of accounts on google map in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>I wanted to show list of accounts on google map using their corresponding address</p>
<p>can provide some suggestions</p>
<p>thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">71f1f16f99fdb8a60c05f54597676af3</guid>
				<title>Vikas Kumar started the discussion What is the Callout Limits within Batch Apex in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-the-callout-limits-within-batch-apex/</link>
				<pubDate>Fri, 27 Jan 2017 14:20:22 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-callout-limits-within-batch-apex-in-salesforce/">What is the Callout Limits within Batch Apex in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi all,</p>
<p>What is the Callout Limits within Batch Apex</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">651ab5dbdb783e3bfa4521207df04060</guid>
				<title>Vikas Kumar replied to the discussion What is Utility bar in salesforce Lightning? What are the uses of it? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-utility-bar-in-lightningwhat-are-the-uses-of-it/#post-18081</link>
				<pubDate>Fri, 27 Jan 2017 06:49:19 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-utility-bar-in-salesforce-lightning-what-are-the-uses-of-it/#post-18081"><span class="bb-reply-lable">Reply to</span> What is Utility bar in salesforce Lightning? What are the uses of it?</a></p> <div class="bb-content-inr-wrap"><p>Hi sushant,</p>
<p>Lightning Experience allows you to add your components to prime real estate in any Lightning app so that your users have one-click access to powerful productivity tools. Now, you can access those same productivity tools in a horizontal footer, called the utility bar.</p>
<p>Lightning Experience allows you to add your components to&hellip;<span class="activity-read-more" id="activity-read-more-15421"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/what-is-utility-bar-in-lightningwhat-are-the-uses-of-it/#post-18081" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2f27e16ac3f0b87f258d851057cd1870</guid>
				<title>Vikas Kumar started the discussion What are the advantages of Visualforce Remote Objects in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/what-are-the-advantages-of-visualforce-remote-objects/</link>
				<pubDate>Wed, 25 Jan 2017 06:00:31 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-are-the-advantages-of-visualforce-remote-objects-in-salesforce/">What are the advantages of Visualforce Remote Objects in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hello Everyone,</p>
<p>What are the advantages of Visualforce Remote Objects?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">801d826a32fa9ffd3b2b0dab62a2bb05</guid>
				<title>Vikas Kumar replied to the discussion How to deploy static resources zip file using ANT to Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-deploy-static-resources-zip-file-using-ant-to-salesforce/#post-18062</link>
				<pubDate>Wed, 25 Jan 2017 05:28:41 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-deploy-static-resources-zip-file-using-ant-to-salesforce/#post-18062"><span class="bb-reply-lable">Reply to</span> How to deploy static resources zip file using ANT to Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Tanu,</p>
<p>You can set up an &#8216;unzippedStaticResources&#8217; directory within your project where you store the unzipped version of your static resource. When you do an ant deploy, an ant task automatically zips up the contents and copies it to the staticresource directory before the deployment happens.</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c51f8d5bf60ca66f36015664cd790f69</guid>
				<title>Vikas Kumar replied to the discussion Can anyone tell how to color a Cell based on Condition in XML Spread sheet using Visualforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/can-anyone-tell-how-to-colori-a-cell-based-on-condition-in-xml-spread-sheet-using-visualforce/#post-18061</link>
				<pubDate>Wed, 25 Jan 2017 05:24:17 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/can-anyone-tell-how-to-colori-a-cell-based-on-condition-in-xml-spread-sheet-using-visualforce/#post-18061"><span class="bb-reply-lable">Reply to</span> Can anyone tell how to color a Cell based on Condition in XML Spread sheet using Visualforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Tanu,</p>
<p>Go through Following Link</p>
<p><a target='_blank' href="http://www.soliantconsulting.com/blog/2016/03/stylish-spreadsheets-from-a-visualforce-page" rel="nofollow">http://www.soliantconsulting.com/blog/2016/03/stylish-spreadsheets-from-a-visualforce-page</a></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">171bf17994f9cf45a7cc5ee495fbb7b2</guid>
				<title>Vikas Kumar started the discussion What is Visualforce Charting and Why Would We Use Visualforce Charting in salesforce? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-visualforce-charting-and-why-would-we-use-visualforce-charting/</link>
				<pubDate>Wed, 25 Jan 2017 05:21:01 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-visualforce-charting-and-why-would-we-use-visualforce-charting-in-salesforce/">What is Visualforce Charting and Why Would We Use Visualforce Charting in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hello Everyone</p>
<p>What is Visualforce Charting and Why Would We Use Visualforce ChartingWhy Would You Use Visualforce Charting?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">96ae8022fcf0368e2d7846054d82e64a</guid>
				<title>Vikas Kumar started the discussion In salesforce, what are Remote Object And how can we use Remote object instead of @remote Action in javascript Remoting in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/what-are-remote-object-and-how-can-we-use-remote-object-instead-of-remote-action-in-javascript-remoting/</link>
				<pubDate>Wed, 25 Jan 2017 05:17:07 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/in-salesforce-what-are-remote-object-and-how-can-we-use-remote-object-instead-of-remote-action-in-javascript-remoting/">In salesforce, what are Remote Object And how can we use Remote object instead of @remote Action in javascript Remoting</a></p> <div class="bb-content-inr-wrap"><p>Hi Everyone,</p>
<p>What are Remote Object And how can we use Remote object instead of @remote Action in javascript Remoting ?</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1fa04f6c11bccd484ff9c6e270a9cdc8</guid>
				<title>Vikas Kumar replied to the discussion How to call a parent  window function in a child window in a salesforce VisualForce page? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-call-a-parent-window-function-in-a-child-window-in-visualforce-page/#post-18058</link>
				<pubDate>Wed, 25 Jan 2017 05:13:29 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-call-a-parent-window-function-in-a-child-window-in-a-salesforce-visualforce-page/#post-18058"><span class="bb-reply-lable">Reply to</span> How to call a parent  window function in a child window in a salesforce VisualForce page?</a></p> <div class="bb-content-inr-wrap"><p>Hi sushant,</p>
<p>you can try something like this</p>
<p>VF page</p>
<p>&lt;apex:page controller=&#8221;LookupMainController&#8221;&gt;<br />
&lt;apex:form &gt;<br />
&lt;apex:pageBlock title=&#8221;Lookup&#8221;&gt;<br />
&lt;apex:pageBlockSection columns=&#8221;1&#8243;&gt;<br />
&lt;apex:pageBlockSectionitem &gt;<br />
&lt;apex:outputLabel value=&#8221;Account&#8221;/&gt;<br />
&lt;apex:outputPanel &gt;<br />
&lt;apex:inputHidden value=&#8221;{!accountId}&#8221; id=&#8221;targetId&#8221; /&gt;<br />
&lt;apex:inputText&hellip;<span class="activity-read-more" id="activity-read-more-15383"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-to-call-a-parent-window-function-in-a-child-window-in-visualforce-page/#post-18058" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">58be36ed78aa5cda075872b1016366ef</guid>
				<title>Vikas Kumar started the discussion What is Forecasting in salesforce and how does it works? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-forecasting-in-salesforce-and-how-does-it-works/</link>
				<pubDate>Tue, 24 Jan 2017 06:25:30 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-forecasting-in-salesforce-and-how-does-it-works/">What is Forecasting in salesforce and how does it works?</a></p> <div class="bb-content-inr-wrap"><p>Hi All,</p>
<p>What is Forecasting in salesforce and how does it works?</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f96c575f42e2f3ef1167f3091e0b402b</guid>
				<title>Vikas Kumar replied to the discussion How to retain checkbox(checked) value from one page with checked value on another page in salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-retain-checkboxchecked-value-from-one-page-with-checked-value-on-another-page-in-salesforce/#post-18039</link>
				<pubDate>Tue, 24 Jan 2017 05:33:37 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-retain-checkboxchecked-value-from-one-page-with-checked-value-on-another-page-in-salesforce/#post-18039"><span class="bb-reply-lable">Reply to</span> How to retain checkbox(checked) value from one page with checked value on another page in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Pranav,</p>
<p>You must create a wrapper class for whatever you wish to track. I&#8217;m not sure how it works, but somehow if you name a boolean variable &#8220;selected&#8221; in your wrapper class, it is mapped to the checkbox.</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">aaf1f9544e1582f0d2afcd171a41440a</guid>
				<title>Vikas Kumar replied to the discussion In Salesforce, how to display dynamic table records in horizontal format? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/in-salesforce-how-to-display-dynamic-table-records-in-horizontal-format/#post-18038</link>
				<pubDate>Tue, 24 Jan 2017 05:18:26 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/in-salesforce-how-to-display-dynamic-table-records-in-horizontal-format/#post-18038"><span class="bb-reply-lable">Reply to</span> In Salesforce, how to display dynamic table records in horizontal format?</a></p> <div class="bb-content-inr-wrap"><p>Hi pranav ,</p>
<p>public class RowWrapper<br />
{<br />
// the values (cells) making up this row<br />
public List&lt;String&gt; values {get; set;}</p>
<p>// constructor<br />
public RowWrapper()<br />
{<br />
values=new List&lt;String&gt;();<br />
}</p>
<p>// append a value (cell) to the row<br />
public void addValue(String value)<br />
{<br />
values.add(value);<br />
}<br />
}</p>
<p>public List&lt;Account&gt;&hellip;<span class="activity-read-more" id="activity-read-more-15357"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/in-salesforce-how-to-display-dynamic-table-records-in-horizontal-format/#post-18038" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4db319586b85849c093d445bb496e626</guid>
				<title>Vikas Kumar replied to the discussion How can I build a multi-select picklist in user interface in Salesforce visualforce page? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-i-build-a-multi-select-picklist-in-user-interface-in-salesforce-visualforce-page/#post-18036</link>
				<pubDate>Mon, 23 Jan 2017 10:40:18 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-i-build-a-multi-select-picklist-in-user-interface-in-salesforce-visualforce-page/#post-18036"><span class="bb-reply-lable">Reply to</span> How can I build a multi-select picklist in user interface in Salesforce visualforce page?</a></p> <div class="bb-content-inr-wrap"><p>Hi Mohit,</p>
<p>Go through Following Link</p>
<p><a target='_blank' href="https://developer.salesforce.com/blogs/developer-relations/2012/06/a-multiselect-picklist-visualforce-component.html" rel="nofollow">https://developer.salesforce.com/blogs/developer-relations/2012/06/a-multiselect-picklist-visualforce-component.html</a></p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f5500d616524f97d2813d0b051c05be7</guid>
				<title>Vikas Kumar replied to the discussion How would you suggest to load 7 million records in Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-would-you-suggest-to-load-7-million-records-in-salesforce/#post-18035</link>
				<pubDate>Mon, 23 Jan 2017 10:38:31 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-would-you-suggest-to-load-7-million-records-in-salesforce/#post-18035"><span class="bb-reply-lable">Reply to</span> How would you suggest to load 7 million records in Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Ashley,</p>
<p>Use Data Loader when:<br />
You need to load 50,000 to 5,000,000 records. Data Loader is supported for loads of up to 5 million records. If you need to load more than 5 million records, we recommend you work with a Salesforce partner or visit the App Exchange for a suitable partner product.<br />
You need to load into an object that is not&hellip;<span class="activity-read-more" id="activity-read-more-15351"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-would-you-suggest-to-load-7-million-records-in-salesforce/#post-18035" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a7154c05dadca2642122c661ca244bb9</guid>
				<title>Vikas Kumar replied to the discussion How to add script files to a salesforce lightning application? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-add-script-files-to-a-salesforce-lightning-application/#post-18034</link>
				<pubDate>Mon, 23 Jan 2017 10:28:33 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-add-script-files-to-a-salesforce-lightning-application/#post-18034"><span class="bb-reply-lable">Reply to</span> How to add script files to a salesforce lightning application?</a></p> <div class="bb-content-inr-wrap"><p>Hi Tanu,</p>
<p>Go through Following Blog Link:-http://blog.enree.co/2014/11/salesforce-lightning-loading-scripts.html</p>
<p>it may Helps You</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>
		
<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Content Delivery Network via Amazon Web Services: CloudFront: cdn.forcetalks.com
Lazy Loading

Served from: 52.205.218.194 @ 2026-06-21 14:19:31 by W3 Total Cache
-->