Navigate to a New Record with default values in LWC This post is going to be a little bit interesting since we will be looking at how to navigate to a new record page/form along with some default values.
Generate a URL in LWC for navigation If you ever want an anchor tag to have the href dynamically built you can rely on NavigationMixin again in association with a different method, which is GenerateUrl.
Navigation to an Aura Component from a Lightning Web Component At times we do have to navigate the user to an Aura Component from Lightning Web Component. Let's look at how to implement it.
Use Lightning Web Components in Visualforce Pages If there exists a Visualforce page in your project on which the team has spent say 6 months, is it suggested that we convert that to Lightning Web Components?
How to use deleteRecord in LWC Let's look at how to delete a record using deleteRecord named import in LWC.
How to use createRecord in LWC? Let's look at how to use createRecord in LWC. We will be reaching out to this only when the LDS tags doesn’t serve the purpose.
Using a Lightning Web Component in Salesforce Flows Let's look at how to use a Lightning Web Component in Salesforce Flows
How to use Lightning Web Components in Aura Components It’s always better to have the new functionality built-in LWC. Let's look at how to use Lightning Web Components in Aura Components.
How to use getRecord in LWC When we have to fetch a single record from the database we don't have to do the song and dance of writing custom logic (using apex code) to fetch the record.