Forcetalks | Vikas Kumar | Activity https://www.forcetalks.com/vikasm-mishraalgoworks-com/activity/ Activity feed for Vikas Kumar. Sat, 16 May 2026 09:36:07 +0530 https://buddypress.org/?v=2.16.0 en-US 30 hourly 2 d3d775aaec37fd95da9e2011119629dc 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 https://www.forcetalks.com/salesforce-topic/can-i-find-out-if-the-current-user-has-access-to-a-record-without-querying/#post-20153 Mon, 15 May 2017 05:09:32 +0530 Reply to In Salesforce, can I find out if the current user has access to a record without querying?

Hi Saurabh,
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.

SELECT RecordId FROM UserRecordAccess WHERE UserId=:UserInfo.getUserId()… Read more

]]>
e5a4c3ce73e0b9860750a4cc168ae10d Vikas Kumar replied to the discussion How to make a Search Bar using Javascript in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-make-a-search-bar-using-javascript-in-salesforce/#post-18610 Thu, 23 Mar 2017 15:00:37 +0530 Reply to How to make a Search Bar using Javascript in Salesforce?

Hi Manpreet,

you can try something like this

Page

<apex:page controller=”SearchJavascriptController”>
<html>
<head>
<style>

* {
box-sizing: border-box;
}

#myInput {
background-image: url(‘/css/searchicon.png’);
background-position: 10px 10px;
background-repeat: no-repeat;
width: 100%;
font-size: 16px;
padding: 12px 20px 12px 40px;
border:… Read more

]]>
57a15dfb69a5bc00498b52a36ca45661 Vikas Kumar replied to the discussion How can we print a list returned by salesforce Remote Action in PageBlockTable? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-print-a-list-returned-by-salesforce-remote-action-in-pageblocktable/#post-18340 Fri, 17 Feb 2017 06:04:01 +0530 Reply to How can we print a list returned by salesforce Remote Action in PageBlockTable?

Hi sushant,

Here is the sample example for your requirement

function getRecordListJS() {
Visualforce.remoting.Manager.invokeAction(
‘{!$RemoteAction.AccountRemoter.getRecordList}’,
recordName,
function(lstresult, event){
for (var n=0; n<lstresult.length; n++){
var result = lstresult[n];
},{escape: true});
}

Hope it may helps

]]>
278e15ffce424850a755ecafbcb54e21 Vikas Kumar replied to the discussion How to add Error messages on Vf Page using Apex in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-add-error-messages-on-vf-page-using-apex-in-salesforce/#post-18339 Fri, 17 Feb 2017 06:00:57 +0530 Reply to How to add Error messages on Vf Page using Apex in Salesforce?

Hi sushant,

You can do something like this

public with sharing class ErrorMessageInVfController {
public Account acc{get;set;}
public ErrorMessageInVfController(ApexPages.StandardController controller) {
acc = new Account();
}

public void save(){
if(acc.name == ” || acc.name ==… Read more

]]>
07f233b3eb94f1165de485e63ad5dbf3 Vikas Kumar replied to the discussion What are the advantages of making community users in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-the-advantages-of-making-community-users-in-salesforce/#post-18338 Fri, 17 Feb 2017 05:57:49 +0530 Reply to What are the advantages of making community users in salesforce?

Hi sushant,

Here are five benefits of connecting with customers through communities:

1. Save Time

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… Read more

]]>
9c197ef266859085578dcf1275276fd7 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 https://www.forcetalks.com/salesforce-topic/how-to-pass-account-id-as-a-parameter-to-custom-button-on-standard-account-detail-page/ Thu, 16 Feb 2017 14:57:29 +0530 How to pass account id as a parameter to custom button on standard Account Detail Page in salesforce?

Hi All,

How to pass account id as a parameter to custom button on standard Account Detail Page ?

]]>
0e4d33d532ff2191b57d9a4ee02a16a4 Vikas Kumar started the discussion How can we define Hyper link on Standard Account Detail Page in salesforce ? in the forum https://www.forcetalks.com/salesforce-topic/how-can-we-define-hyper-link-on-standard-account-detail-page/ Thu, 16 Feb 2017 14:55:07 +0530 How can we define Hyper link on Standard Account Detail Page in salesforce ?

Hi All,

How can we define Hyper link on Standard Account Detail Page ?

Thanks

]]>
07b5640d67e72d0a244ceb2c24f07f46 Vikas Kumar started the discussion How to display Map values on Visualforce Page ? in the forum https://www.forcetalks.com/salesforce-topic/how-to-display-map-values-on-visualforce-page/ Thu, 16 Feb 2017 14:53:02 +0530 How to display Map values on Visualforce Page ?

Hi All,

How to display Map values on Visualforce Page ?

]]>
1b0ee93c799e323a1c0502e6bd7492ec Vikas Kumar started the discussion How can we login as a community user in salesforce in the forum https://www.forcetalks.com/salesforce-topic/how-can-we-login-as-a-community-user-in-salesforce/ Wed, 15 Feb 2017 14:34:41 +0530 How can we login as a community user in salesforce

Hi all,

How can we login as a community user in salesforce ?

 

Thanks

]]>
dbe968b1de468c6e42752014da546202 Vikas Kumar started the discussion How can we use lightning component in salesforce community in the forum https://www.forcetalks.com/salesforce-topic/how-can-we-use-lightning-component-in-salesforce-community/ Wed, 15 Feb 2017 14:33:25 +0530 How can we use lightning component in salesforce community

Hi all,

How can we use lightning component in salesforce community ?

Thanks

]]>
562e4eddddbe6ad97f5212835a9ddd66 Vikas Kumar started the discussion How to restrict input to numbers only in inputText field visualforce in the forum https://www.forcetalks.com/salesforce-topic/how-to-restrict-input-to-numbers-only-in-inputtext-field-visualforce/ Wed, 15 Feb 2017 14:31:54 +0530 How to restrict input to numbers only in inputText field visualforce

Hi All,

How to restrict input to numbers only in inputText field visualforce?

Thanks

]]>
750fcc03bb5e75cfe1c056c4123e1d75 Vikas Kumar started the discussion How to add error message to specific inputText / inputfield in visualforce page in the forum https://www.forcetalks.com/salesforce-topic/how-to-add-error-message-to-specific-inputtext-inputfield-in-visualforce-page/ Wed, 15 Feb 2017 14:29:00 +0530 How to add error message to specific inputText / inputfield in visualforce page

Hi All,

How to add error message to specific inputText / inputfield in visualforce page?

Thanks

]]>
317dbc629b96fe689c96c5d846d1721f Vikas Kumar started the discussion How to show Particular div to be on top of everything in the forum https://www.forcetalks.com/salesforce-topic/how-to-show-particular-div-to-be-on-top-of-everything/ Wed, 15 Feb 2017 14:27:10 +0530 How to show Particular div to be on top of everything

Hi all,

Using CSS I want a div to be on top of everything on a visualforce page

thanks

]]>
f2fed7cce6d755680ff4cb2dec6ce23e Vikas Kumar started the discussion Apex Param "assignTo" attribute to function correctly with command button in the forum https://www.forcetalks.com/salesforce-topic/apex-param-assignto-attribute-to-function-correctly-with-command-button/ Wed, 15 Feb 2017 14:25:17 +0530 Apex Param "assignTo" attribute to function correctly with command button

Hi All,

Not able to assign parameter without using re-render attributes with command button

plz suggest other way out to do so

Thanks

]]>
156d580e6c8ddd8b257db49e95824952 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 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 Tue, 14 Feb 2017 07:48:01 +0530 Reply to Which tool is used to scan the subject line and body of the email message in Salesforce?

Hi pranav,

EasilyDo – Sales Assistant to Automate Data Entry is used to scan the subject line and body of the email message in Salesforce.

for more info :-https://appexchange.salesforce.com/listingDetail?listingId=a0N3000000B561eEAB

 

]]>
b51204d6a37f5d9b2053882ac9db1b91 Vikas Kumar replied to the discussion What are Data Integration Rules?What are the uses of it? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-data-integration-ruleswhat-are-the-uses-of-it/#post-18269 Tue, 14 Feb 2017 07:26:06 +0530 Reply to What are Data Integration Rules?What are the uses of it?

Hi sushant,
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.

for more info go… Read more

]]>
ccefd831daebfed7f2c7610af42270af Vikas Kumar replied to the discussion How to specify multiple responses in SOAP callout? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-specify-multiple-responses-in-soap-callout/#post-18268 Tue, 14 Feb 2017 07:23:48 +0530 Reply to How to specify multiple responses in SOAP callout?

Hi sushant,

You could create a constructor for example:

@isTest
global class PuchaseWSMock_IsTest implements WebServiceMock {

public String type;

global PuchaseWSMock_IsTest(final String type){
this.type = type;
}

global void doInvoke(Object stub,
Object request,
Map<String, Object> response,
String endpoint,
String… Read more

]]>
f34e5ab5ef69bbf13a3a05d2de9f9f0c Vikas Kumar started the discussion How can we achieve conditional rollback on saving multiple hierarchy records ? in the forum https://www.forcetalks.com/salesforce-topic/how-can-we-achieve-conditional-rollback-on-saving-multiple-hierarchy-records/ Mon, 13 Feb 2017 14:19:12 +0530 How can we achieve conditional rollback on saving multiple hierarchy records ?

Hi All,

i am in a scenerio i wanted to save records based on condition like we have 5 objects

on failure of obj5 records upto 4 get saved,

similarly on failure of obj4 records upto 3 get saved,

and so on ,

but on failure of obj2, obj1 record  will not get saved

thanks

]]>
d10b819af53d34047110930582e66e17 Vikas Kumar started the discussion How to save blank spaces in text area in the forum https://www.forcetalks.com/salesforce-topic/how-to-save-blank-spaces-in-text-area/ Mon, 13 Feb 2017 13:37:04 +0530 How to save blank spaces in text area

Hi All,

how can we save blank spaces in text area ?

]]>
4c9cd3eed85d5a9c46bd0957656b3b33 Vikas Kumar started the discussion how can we Use Heroku Connect to Sync with Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/how-can-we-use-heroku-connect-to-sync-with-salesforce/ Mon, 13 Feb 2017 13:33:55 +0530 how can we Use Heroku Connect to Sync with Salesforce?

Hi All ,

how can we Use Heroku Connect to Sync with Salesforce?

]]>
5ba132cc8b653144d7a1fd912a34044c Vikas Kumar replied to the discussion how to display the result of sosl in Salesforce Visualforce page? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-display-the-result-of-sosl-in-salesforce-visualforce-page/#post-18231 Wed, 08 Feb 2017 12:45:25 +0530 Reply to how to display the result of sosl in Salesforce Visualforce page?

Hi gaurav;

you can do something like this

<apex:page StandardController=”Contact” extensions=”tstpopup1″>

<apex:form>

<apex:commandButton action=”{!runQuery}” value=”Go”/>

<apex:pageBlock >
<apex:pageBlockSection columns=”1″>
<apex:pageBlockTable value=”{!accounts}” var=”account”>
<apex:column… Read more

]]>
61a034ed32178e3daf29818f7c842da0 Vikas Kumar replied to the discussion What is Trigger Factory?How can we use this? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-trigger-factoryhow-can-we-use-this/#post-18230 Wed, 08 Feb 2017 12:29:43 +0530 Reply to What is Trigger Factory?How can we use this?

Hello sushant,

Trigger factory implementation in Salesforce. Please check below post for code also
1)

Trigger factory implementation in Salesforce


2) http://salesforcecookcode.blogspot.in/2014/11/trigger-factory.html

Please check below post for same trigger… Read more

]]>
d3e457e8b3f9b00b869863ccb1cd1e04 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 https://www.forcetalks.com/salesforce-topic/what-is-the-best-way-to-parse-the-json-response-that-comes-from-google-map/#post-18229 Wed, 08 Feb 2017 12:28:23 +0530 Reply to What is the best way to parse the JSON response that comes from google map?

Hi Sushant,

Just deserialize:

public class Response { final Geometry geometry; }
public class Geometry { final Location location; }
public class Location { final Decimal latitude, longitude; }
Granted, your JSON payload is not valid as currently specified. The above would work though if your structure boils down to:

{
“geometry”:… Read more

]]>
7f1fa9561799b0627ba8b4c150293898 Vikas Kumar replied to the discussion How to write test method for wrapper class? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-write-test-method-for-wrapper-class/#post-18228 Wed, 08 Feb 2017 12:24:06 +0530 Reply to How to write test method for wrapper class?

Hello sushant,

you can do something like this

Apex Class:

public class EmployeeController {
public static void assignSequence(List<Employee__c> listEmployee, Decimal startNum) {
Decimal initial = startNum;
List<EmployeeWrapper> listEmployeeWrapper = new List<EmployeeWrapper>();

for(Employee__c emp : listEmployee)… Read more

]]>
0f84837245cecfae91e0a7a91b2b571d Vikas Kumar replied to the discussion What is Home Page Component in salesforce?what are the uses of it? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-home-page-component-in-salesforcewhat-are-the-uses-of-it/#post-18227 Wed, 08 Feb 2017 12:21:19 +0530 Reply to What is Home Page Component in salesforce?what are the uses of it?

Hi sushant;

Home Page Component

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.… Read more

]]>
1c15708a2de2b902d1eaf526c4a9a5d2 Vikas Kumar started the discussion How to upload Documents in Adobe sign through its Api in the forum https://www.forcetalks.com/salesforce-topic/how-to-upload-documents-in-adobe-sign-through-its-api/ Tue, 07 Feb 2017 14:42:00 +0530 How to upload Documents in Adobe sign through its Api

Hi All,

How to upload Documents in Adobe sign through its Api?

thanks

]]>
2e76c3af54525a236fca30810a86f5ba Vikas Kumar started the discussion How to send base 64 file in post request using postman in the forum https://www.forcetalks.com/salesforce-topic/how-to-send-base-64-file-in-post-request-using-postman/ Tue, 07 Feb 2017 14:40:27 +0530 How to send base 64 file in post request using postman

Hi all,

How to send base 64 file in post request using postman?

 

]]>
532145550a0dd48dc0664c3b1be59c1f Vikas Kumar started the discussion how to encode and decode files to base 64 format in salesforce in the forum https://www.forcetalks.com/salesforce-topic/how-to-encode-and-decode-files-to-base-64-format-in-salesforce/ Tue, 07 Feb 2017 14:39:28 +0530 how to encode and decode files to base 64 format in salesforce

Hi all,

How to encode and decode files to base 64 format in salesforce

 

]]>
15550ef0af68dcfadfa442236772ad53 Vikas Kumar started the discussion How can we pull a specific directory From Bit bucket in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/how-can-we-pull-a-specific-directory-from-bit-bucket/ Tue, 31 Jan 2017 13:58:45 +0530 How can we pull a specific directory From Bit bucket in Salesforce?

Hi All,

How can we pull a specific directory From Bit bucket

]]>
bb367bd4de9655393f80c34fff861e1c Vikas Kumar started the discussion How to roll back Git Commit in salesforce? in the forum https://www.forcetalks.com/salesforce-topic/how-to-roll-back-git-commit/ Tue, 31 Jan 2017 13:55:06 +0530 How to roll back Git Commit in salesforce?

Hi All,

how can we roll back Git Commit

 

]]>
447cfc63bbe40fbae8713de1c08d019a Vikas Kumar replied to the discussion Display related contacts in google map for an account in salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/display-related-contacts-in-google-map-for-an-account/#post-18120 Tue, 31 Jan 2017 13:50:29 +0530 Reply to Display related contacts in google map for an account in salesforce

Hi Kumar,

<apex:page standardController=”Account” extensions=”ContactsOnGoogleMapController” showHeader=”false” sidebar=”false” standardStylesheets=”false”>

<script type=”text/javascript” src=”https://maps.googleapis.com/maps/api/js?sensor=false”></script>

<script type=”text/javascript”>
var mapicon = JSON.parse(‘{!contactJson}’);
var url… Read more

]]>
6a6eae68ae5e31fd68c0a603fd68d3e1 Vikas Kumar replied to the discussion Difference between window.parent.location and window.top.location in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/difference-between-window-parent-location-and-window-top-location/#post-18118 Tue, 31 Jan 2017 13:48:49 +0530 Reply to Difference between window.parent.location and window.top.location in salesforce?

Hi Sushant,

window.location.href returns the location of the current page.

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).

top is useful both when you’re… Read more

]]>
bae6f75fc65f3b86bf1fcdd6a7230ac0 Vikas Kumar started the discussion What is Apex cookie class And how to Use it in salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-is-apex-cookie-class-and-how-to-use-it/ Tue, 31 Jan 2017 13:46:39 +0530 What is Apex cookie class And how to Use it in salesforce?

Hi All,

What is Apex cookie class And how to Use it ?

]]>
ca6b7db66e1cad572bab80c40d3d1448 Vikas Kumar started the discussion What is Apex crypto class and how to use it in salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-is-apex-crypto-class-and-how-to-use-it/ Tue, 31 Jan 2017 13:45:43 +0530 What is Apex crypto class and how to use it in salesforce?

Hi All,

What is Apex crypto class and how to use it

]]>
f13ec9c288c67946b4dbeb5061f7a7f6 Vikas Kumar started the discussion How to get GeoCodes from From address using Apex in salesforce? in the forum https://www.forcetalks.com/salesforce-topic/how-to-get-geocodes-from-from-address-using-apex/ Mon, 30 Jan 2017 14:51:22 +0530 How to get GeoCodes from From address using Apex in salesforce?

Hi All,

How can we  get GeoCodes from From address using Apex code using GoogleMap Integration

]]>
1f4d2f6fb33065a17b19d5ef46442284 Vikas Kumar started the discussion How to display list of accounts on google map in salesforce? in the forum https://www.forcetalks.com/salesforce-topic/how-to-display-list-of-accounts-on-google-map/ Mon, 30 Jan 2017 14:45:33 +0530 How to display list of accounts on google map in salesforce?

Hi All,

I wanted to show list of accounts on google map using their corresponding address

can provide some suggestions

thanks

]]>
71f1f16f99fdb8a60c05f54597676af3 Vikas Kumar started the discussion What is the Callout Limits within Batch Apex in salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-is-the-callout-limits-within-batch-apex/ Fri, 27 Jan 2017 14:20:22 +0530 What is the Callout Limits within Batch Apex in salesforce?

Hi all,

What is the Callout Limits within Batch Apex

]]>
651ab5dbdb783e3bfa4521207df04060 Vikas Kumar replied to the discussion What is Utility bar in salesforce Lightning? What are the uses of it? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-utility-bar-in-lightningwhat-are-the-uses-of-it/#post-18081 Fri, 27 Jan 2017 06:49:19 +0530 Reply to What is Utility bar in salesforce Lightning? What are the uses of it?

Hi sushant,

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.

Lightning Experience allows you to add your components to… Read more

]]>
2f27e16ac3f0b87f258d851057cd1870 Vikas Kumar started the discussion What are the advantages of Visualforce Remote Objects in salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-are-the-advantages-of-visualforce-remote-objects/ Wed, 25 Jan 2017 06:00:31 +0530 What are the advantages of Visualforce Remote Objects in salesforce?

Hello Everyone,

What are the advantages of Visualforce Remote Objects?

]]>
801d826a32fa9ffd3b2b0dab62a2bb05 Vikas Kumar replied to the discussion How to deploy static resources zip file using ANT to Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-deploy-static-resources-zip-file-using-ant-to-salesforce/#post-18062 Wed, 25 Jan 2017 05:28:41 +0530 Reply to How to deploy static resources zip file using ANT to Salesforce?

Hi Tanu,

You can set up an ‘unzippedStaticResources’ 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.

]]>
c51f8d5bf60ca66f36015664cd790f69 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 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 Wed, 25 Jan 2017 05:24:17 +0530 Reply to Can anyone tell how to color a Cell based on Condition in XML Spread sheet using Visualforce?

]]>
171bf17994f9cf45a7cc5ee495fbb7b2 Vikas Kumar started the discussion What is Visualforce Charting and Why Would We Use Visualforce Charting in salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-is-visualforce-charting-and-why-would-we-use-visualforce-charting/ Wed, 25 Jan 2017 05:21:01 +0530 What is Visualforce Charting and Why Would We Use Visualforce Charting in salesforce?

Hello Everyone

What is Visualforce Charting and Why Would We Use Visualforce ChartingWhy Would You Use Visualforce Charting?

]]>
96ae8022fcf0368e2d7846054d82e64a 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 https://www.forcetalks.com/salesforce-topic/what-are-remote-object-and-how-can-we-use-remote-object-instead-of-remote-action-in-javascript-remoting/ Wed, 25 Jan 2017 05:17:07 +0530 In salesforce, what are Remote Object And how can we use Remote object instead of @remote Action in javascript Remoting

Hi Everyone,

What are Remote Object And how can we use Remote object instead of @remote Action in javascript Remoting ?

 

]]>
1fa04f6c11bccd484ff9c6e270a9cdc8 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 https://www.forcetalks.com/salesforce-topic/how-to-call-a-parent-window-function-in-a-child-window-in-visualforce-page/#post-18058 Wed, 25 Jan 2017 05:13:29 +0530 Reply to How to call a parent window function in a child window in a salesforce VisualForce page?

Hi sushant,

you can try something like this

VF page

<apex:page controller=”LookupMainController”>
<apex:form >
<apex:pageBlock title=”Lookup”>
<apex:pageBlockSection columns=”1″>
<apex:pageBlockSectionitem >
<apex:outputLabel value=”Account”/>
<apex:outputPanel >
<apex:inputHidden value=”{!accountId}” id=”targetId” />
<apex:inputText… Read more

]]>
58be36ed78aa5cda075872b1016366ef Vikas Kumar started the discussion What is Forecasting in salesforce and how does it works? in the forum https://www.forcetalks.com/salesforce-topic/what-is-forecasting-in-salesforce-and-how-does-it-works/ Tue, 24 Jan 2017 06:25:30 +0530 What is Forecasting in salesforce and how does it works?

Hi All,

What is Forecasting in salesforce and how does it works?

 

]]>
f96c575f42e2f3ef1167f3091e0b402b 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 https://www.forcetalks.com/salesforce-topic/how-to-retain-checkboxchecked-value-from-one-page-with-checked-value-on-another-page-in-salesforce/#post-18039 Tue, 24 Jan 2017 05:33:37 +0530 Reply to How to retain checkbox(checked) value from one page with checked value on another page in salesforce?

Hi Pranav,

You must create a wrapper class for whatever you wish to track. I’m not sure how it works, but somehow if you name a boolean variable “selected” in your wrapper class, it is mapped to the checkbox.

]]>
aaf1f9544e1582f0d2afcd171a41440a Vikas Kumar replied to the discussion In Salesforce, how to display dynamic table records in horizontal format? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/in-salesforce-how-to-display-dynamic-table-records-in-horizontal-format/#post-18038 Tue, 24 Jan 2017 05:18:26 +0530 Reply to In Salesforce, how to display dynamic table records in horizontal format?

Hi pranav ,

public class RowWrapper
{
// the values (cells) making up this row
public List<String> values {get; set;}

// constructor
public RowWrapper()
{
values=new List<String>();
}

// append a value (cell) to the row
public void addValue(String value)
{
values.add(value);
}
}

public List<Account>… Read more

]]>
4db319586b85849c093d445bb496e626 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 https://www.forcetalks.com/salesforce-topic/how-can-i-build-a-multi-select-picklist-in-user-interface-in-salesforce-visualforce-page/#post-18036 Mon, 23 Jan 2017 10:40:18 +0530 Reply to How can I build a multi-select picklist in user interface in Salesforce visualforce page?

]]>
f5500d616524f97d2813d0b051c05be7 Vikas Kumar replied to the discussion How would you suggest to load 7 million records in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-would-you-suggest-to-load-7-million-records-in-salesforce/#post-18035 Mon, 23 Jan 2017 10:38:31 +0530 Reply to How would you suggest to load 7 million records in Salesforce?

Hi Ashley,

Use Data Loader when:
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.
You need to load into an object that is not… Read more

]]>
a7154c05dadca2642122c661ca244bb9 Vikas Kumar replied to the discussion How to add script files to a salesforce lightning application? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-add-script-files-to-a-salesforce-lightning-application/#post-18034 Mon, 23 Jan 2017 10:28:33 +0530 Reply to How to add script files to a salesforce lightning application?

Hi Tanu,

Go through Following Blog Link:-http://blog.enree.co/2014/11/salesforce-lightning-loading-scripts.html

it may Helps You

 

]]>