Skip to main content

Posts

Showing posts from November, 2020

Connect LWC with Apex Class and Play With Salesforce Data

Agenda I am Writing This Blog To share my knowledge with everyone and we can learn about something in Lightning Web Component. And In this Blog, we are going to learn different ways to connect a Lightning Web Component (LWC). Blog Details This Blog gives us a brief about What is a Lightning Web Component, and how can we connect a Lightning Web Component with the Apex Class and or an Apex Method and how can we play with salesforce data in our way. What we are going to do We are going to create a Lightning Web Component using VS-Code. And Use the JavaScript of that file to connect with Apex Class Method. For that, we use different ways to establish a connection between apex class and LWC and play with the data. Requirements: You need to have access to your org. Should have installed the VS Code Installed in your system. You should have some basic knowledge of Lightning Web Component. A Little About Lightning Web Component(LWC)...

Displaying User Level’s Dynamically In Lightning Web Component

  Agenda I am writing this blog, to display dynamic user data beautifully, It enables each user to see the users they need to report. With this dynamic component, you can control data visibility without having to create a separate component as well, with its own running user.  Now, It’s time to show the user’s of our organization dynamically their role in a beautiful way. How does it work? You fetch the User’s record with a simple Apex SOQL query and just displaying details Dynamically over a Lightning Web Component, And place that component where ever you want. Requirements: You need to have access to your org. Should have the VS Code Installed in your system. You should have some basic knowledge of Lightning Web Component. About Lightning Web Component (LWC): Lightning Web Components are lightweight custom elements based on native HTML and Modern JavaScript. Lightning Web Compone...