Skip to main content

Posts

Showing posts with the label Component

Latest Post

How to Set Up Two-Factor Time-Based One-Time Password (TOTP) Authentication on iPhone Without Third-Party Apps

Unlocking an additional layer of safety to your iPhone is less difficult than you might suppose. With Two-Factor Time-Based One-Time Password (TOTP) authentication, you may bolster your device's protection and other website safety without relying on 1/3-party apps. Here's how you could set it up:

LWC Dynamic Code: Calling LWC from Aura Component

Introduction: In Salesforce development, Lightning Web Components (LWC) and Aura Components are two widely used frameworks for building user interfaces. While Aura Components have been around for a while, LWC introduces a modern, lightweight approach to component-based development. In this blog post, we will explore how to dynamically call an LWC from an Aura Component, allowing for flexible and dynamic user interfaces.

Salesforce LWC Code for Multi-Select Lookup

Introduction: In Salesforce Lightning Web Components (LWC), implementing a multi-select lookup field can enhance the user experience and provide greater flexibility for selecting multiple related records. In this blog post, we will walk through the process of creating a multi-select lookup field using LWC. We will cover the required code snippets and provide step-by-step instructions to help you implement this functionality in your Salesforce org.

Show all project component (apex class, Visualforce page, customobjects etc )in Single Visualforce page

 Here is sample code to view all project related components in Visualforce page (apex class, vf pages, permission set, public groups etc) Class Code :- public class Project_Components {     transient public List<displayListWrapper> displayList{get;set;}     transient public List<ApexClass> ClassList{get;set;}     transient public List<PageClassWrapper> pageClassList{get;set;}     transient public List<PermissionSet> permissionSetList{get;set;}     transient public List<Group> publicGroupList{get;set;}     transient public List<ProcessDefinition> processList {get;set;}     transient public List<ApexTrigger> triggerList {get;set;}     transient public List<ApexComponent> apexComponentList{get;set;}     transient public Map<String,String> objectNameVsLabelMap{get;set;}     transient public List<ObjectRelationshipWrapper> object...

My First Code in Salesforce LWC: Exploring the Basics

Introduction: Welcome to my blog, where I will be sharing my experience of writing my first code in Salesforce Lightning Web Components (LWC). As a Salesforce developer, I was eager to dive into LWC, a modern and efficient way to build Salesforce user interfaces. In this blog post, I will walk you through the process of creating a simple LWC component and explain the code step by step. Setting Up the Development Environment: Before we begin, make sure you have set up your Salesforce Developer Edition org and enabled the Lightning Web Components feature. You will also need a code editor such as Visual Studio Code with the Salesforce Extensions Pack installed. Creating the LWC Component: To get started, navigate to your Salesforce org and follow these steps: Step 1: Create a new Lightning Web Component: In the Salesforce setup, search for " Lightning Web Components " and click on " New ." Provide a name for your component, such as " HelloWorld ," a...