carFilter and carCard Components

Go to Lightning App Builder and create an App Page, “Car Explorer” and add the components “carFilter”, “carTileList” and “carCard” in the page and click on Save.

Go to App Manager , create a new lightning app “CAR_HUB”. Add the app page “Car Explorer” and Car object in the navigation items.

Go to App Launcher and Search for “CAR_HUB”. Test the functionality.

carFilter and carCard Components Read More »

Introducing Car Hub: Overview of Key Components and Functionality

This is a single page project and we are using lightning message channel to share the information from one component to another.
Filter Component: This component allows users to search for cars based on various criteria. Users can filter cars by name, select a price range, and choose specific categories or makes. Any selections made in the filter component will instantly update the “Cars Available” component, displaying the results that match the chosen filters.

Introducing Car Hub: Overview of Key Components and Functionality Read More »

Creating a Car Hub with Salesforce: A Hands-On Project Using LWC, Apex, and Jest

In the ever-evolving landscape of customer experiences, digital menus have become a pivotal tool for businesses, especially in the hospitality sector.

To sharpen my Salesforce skills and contribute to this trend, I embarked on a project to create a fully functional Digital Menu using Salesforce technologies. This project leverages the power of Lightning Web Components (LWC) for the front-end, Apex for server-side logic, and the Lightning Messaging Service for seamless communication between components.

Creating a Car Hub with Salesforce: A Hands-On Project Using LWC, Apex, and Jest Read More »

JEST Setup For Salesforce

Prerequisites:
Salesforce CLI, Visual Studio Code, Salesforce Extentions for Visual Studio Code, Node.js, npm installed and updated.
To confirm Node.js and npm is installed, In Visual Studio Code terminal, enter the following command respectively :
node –version
npm –version
Confirm the CLI is properly installed and on the latest version by running the following command:
sfdx update

JEST Setup For Salesforce Read More »

10 Configuration Based Salesforce Interview Questions

I am trying to give only the important questions that are required during the interview process. It is always good to read some extra questions as well but you can always keep revising these questions.

1. What is a Master-Detail Relationship?
Answer:A Master-Detail relationship in Salesforce establishes a parent-child relationship between two objects. The parent object (master) controls the behavior of the child object (detail). Child records inherit security settings, sharing rules, and deletion behavior from the parent.

10 Configuration Based Salesforce Interview Questions Read More »

Embark on a Learning Adventure: Mastering Jest for Lightning Web Components (LWC)

Hey there, fellow developers and curious minds! Are you ready to take your Lightning Web Components (LWC) skills to the next level? If you’re nodding your head, you’re in for a treat. I’m thrilled to introduce you to a brand new series of blogs and videos that will demystify the world of Jest in LWC development.

Embark on a Learning Adventure: Mastering Jest for Lightning Web Components (LWC) Read More »

How to Declare Variables in Lightning Web Components

JavaScript is a widely used programming language for making websites and web applications. In the Salesforce world, it’s crucial for creating Lightning Web Components (LWC). When you’re using JavaScript in LWC, it’s important to know the difference between ‘let’ and ‘var’ and ‘const’ because they are used to create variables in slightly different ways.

How to Declare Variables in Lightning Web Components Read More »