lwc How to use if .. else if in LWC? Earlier we had to execute if:true a lot of times to conditional render the markup in LWC. With Spring 23 we can use if .. else if in the LWC template files and it becomes a lot easier to render markup conditionally.
lwc How to create multiple records using the createRecord method in LDS? Though LDS is typically used to interact with the single record we can use LDS methods to perform DML on multiple records.
advanced apex How to create REST API in Apex Let's look at how to create REST API in Apex. We would need this when we have a bit more customized requirements than performing basic DML on the sObject.
Apex How to fetch records from an object where field 1 = field 2 only using soql? Have you ever wondered how we can fetch records from an object where field 1 = field 2 only using soql?
advanced apex Using regular expressions in Apex Using regex in Apex is one of the most frequently encountered requirements when we work on string manipulation a lot.
Lighting Web Component Copy to Clipboard functionality in LWC Let's look at how to implement the copy to clipboard functionality in LWC
interview questions Get the list of profiles having access to a specific object - SOQL Interview Question This interview question on SOQL is going to make you aware of how can use SOQL and get all the profile names having access to a specific object.
Aura Components Top 10 Aura Components Interview Questions Have a look at these Top 10 Aura Components Interview Questions and I can guarantee that you will excel in your interview.
Aura Components What is <aura:method /> in Aura Components? There might be a requirement to invoke the Javascript method in the child component from the parent component and in such scenarios comes handy.
advanced apex How to fetch SObject fields API names in Dev Console without any extension This feature of being able to fetch Sobject fields API names directly from Developer Console is going to save you tons of time.s
advanced apex Writing the test class for an Extension in Apex When we need to write test cases for an extension that might be a bit of a learning curve and this post helps you with that.
Lighting Web Component Using SLDS to avoid printing specific elements on the LWC Component There might be an ask from the business that only certain parts of the page have to be printed and avoid other elements from getting printed when we save the file as PDF or when taking a printout.
Lighting Web Component How to download the current webpage in PDF format in LWC? Download the webpage in PDF in LWC - there might be a business requirement like this and let me walk you through how to implement it.
administration What all entities do we have in Salesforce for Sharing and Security Salesforce has a unique way of handling the sharing and security with respect to data. Let's look at them.
advanced apex How to subscribe to a Platform Event using Trigger Let's look at how to subscribe to Platform Events using Triggers.
interview questions What is the difference between Standard Controller, Custom Controller, and Extensions Let us look at what's the differences between Standard Controller, Custom Controller, and Extensions
interview questions What is the difference between Profile and Roles? This is one of the most frequently asked interview questions. So let get to the bottom of it. Profiles These are considered as the heart of Sharing and Security. When it comes to object-level security and field-level security profiles will be used. We will be given the option to provide
Lighting Web Component Navigate user from LWC to an external URL Let's look at how can we navigate the user from LWC to an external URL.
interview questions Difference between Lookup Relationship and Master-Detail Relationship in Salesforce Let's look at the difference between Lookup Relationship and Master-Detail Relationship in Salesforce.
Lighting Web Component Page Reference Types in LWC Page Reference Types play a key role when it comes to navigating the users from one LWC to a different destination or from one Aura Component to a different destination.
Lighting Web Component Navigate a user to a record page in edit mode in LWC Let's look at how to Navigate a user to a record page in edit mode in LWC.
Aura Components Types of Events in Lightning Components [Aura Components] Let's look at different types of events that are available in Lightning Components [Aura Components]
Aura Components What is a resource bundle in Aura Components? Let us look at an interview question on Aura Components. What is a resource bundle in Aura Components?
Aura Components What's the use of helper.js file in Lightning Components aka Aura Components? Let me walk you through the use of helper.js file in Lightning Component aka Aura Components.
interview questions When can we hard delete records in Data Loader One of the most frequently asked interview questions on Data Loader is when can we Hard Delete records.