In this tutorial, you will learn Lightning Components communication patterns which are attributes, method, events and can be used as per use-case
Salesforce Lightning Component Interview questions
Salesforce Lightning component Interview questions with answers for beginner and experienced developers. Lightning component framework guide at Sfdcbeginner
Salesforce DX most useful commands
A Salesforce DX project is a local copy of your artifact, a group of related code and customizations. We use following commands very frequently
An Introduction to Salesforce Platform Events
Learn about Salesforce Platform events and how to Setup Salesforce platform events inside Salesforce.
Production Deployment Strategies
Any time you deploy changes to production it is very critical because end user might get effected if something goes wrong so every time deployment happen you should have a deployment strategies.
Working with Salesforce data using Lightning design system
This tutorial comprise Lightning Design System to display Contact of any Account using apex function in Visualforce page. Apex Class Visual force page
Apex Test Suite a handy feature
With Spring ’16 Salesforce has released a new feature which helps to run multiple test classes at once. Suppose you have 50 test classes in your org on Opportunity object and every time any developer makes any change in your apex code you want to make sure that test cases are no failing so you manually …
How to test Salesforce Rest API using Rest Client
Salesforce provides Rest API which can be used to connect external services with Salesforce without human intervention. in this tutorial I will explain how to test Salesforce Rest API using Advance Rest API client. Create Connected app in salesforce from Setup->Create-> Apps After successful completion of previous step you will get consumer key and …
Manage Users with Lightning Component
This tutorial comprise Lightning Design System and Lightning component to manage users from Salesforce1. Create Lightning component from Developer console by going Setup-> Developer console-> File -> New -> Lightning component and name it Manage_User Create new apex class in your code with following code. Create Manage_UserHelper.js with following code which will communicate with apex …
Run Test Class in Salesforce from Apex
Salesforce support following way to execute a test class inside Salesforce The Salesforce user interface The Force.com IDE The Force.com Developer Console The API But apart from that we can run a test class in Salesforce from apex using ApexTestQueueItem (in beta release) which will submit your test class for test execution asynchronously.