
ejju sowmya
Individual-
Mallika replied to the discussion What is a method for adding content to Salesforce CRM content? in the forum Salesforce® Discussions 4 years ago
What is a method for adding content to Salesforce CRM content?
Hi Ratnesh,
We can add content in 2 ways.
<b id="ext-gen26">Chatter files
You can upload a file and store it privately until you're ready to share it. Share the file with coworkers and groups to collaborate and get feedback. Attach files to posts in a Chatter feed on the Home tab, Chatter tab, a profile, a record, or a group. Users with access… -
Mallika replied to the discussion How to insert password in apex test class of Salesforce? in the forum Salesforce® Discussions 4 years ago
How to insert password in apex test class of Salesforce?
Hi Aditya,
Try this code. Hope it helps!
@isTest public class SampleTest { public static testMethod void LoginFail() { Sample tp=new Sample (); tp.loginPage(); } public static testMethod void loginPass() { Account acc = new Account(); acc.Name ='mecrin'; acc.sic = '12345'; insert acc; Sample tp=new Sample…
-
Mallika replied to the discussion How to integrate a youtube search engine in a Visualforce page? in the forum Salesforce® Discussions 4 years ago
How to integrate a youtube search engine in a Visualforce page?
Hi Shweta,
By creating Apex Controller, we can integrate Youtube search engine in VF page.
Try using the code mentioned in the below link.
https://developer.salesforce.com/forums/?id=906F0000000AVJGIA4
I hope this helps!
-
Mallika replied to the discussion How can we conditionally display content in lightning component? in the forum Salesforce® Discussions 4 years ago
-
Mallika replied to the discussion How can we display loading spinner in lightning component? in the forum Salesforce® Discussions 4 years ago
How can we display loading spinner in lightning component?
Hi Pooja,
lightning:spinner displays an animated spinner image to indicate that a request is loading.
Here is the explanation and example code for creating loading spinner in Lightning component.
https://www.sfdcpoint.com/salesforce/loading-spinner-in-lightning-component/
Hope this helps!