Vivekheyvivek.com·Aug 13, 2024🌟 Simplifying Web Development with Lit Components: JavaScript Web Components Made EasierIn the evolving landscape of web development, the need for reusable, modular, and efficient components has become paramount. While JavaScript Web Components provide a powerful solution to these needs, they often come with a steep learning curve. This...Discuss·11 likes·302 readslit
Vivekheyvivek.com·Jul 7, 2024Build a micro-javascript frontend framework based on Web Components and no-buildCreating a basic JavaScript framework on Web Components with Shadow DOM and ES Modules, including client-side routing, requires a few steps. I shall outline how one can set up a framework. Step 1: Setting Up Your Project Create a brand new directory ...Discuss·10 likesJavaScript
Kapil Chauhankapilchauhan3108.hashnode.dev·Jul 6, 2024Passing values across the components using pub-sub (LWC)I came across a question in my recent interview : If we want to pass values from component A to B to C where all 3 components are not in a relationship and in a same page , what can be the best way ? pub-sub or Messaging -Service . After I try to imp...Discusssalesforce development
noKodrnokodr.hashnode.dev·Jun 6, 2024Optimizing User Experience in Salesforce: Leveraging with Highly Configurable ComponentsIntroduction As discussed in earlier blog, salesforce is renowned for its robust and customizable platform, allowing businesses to tailor their CRM to fit specific needs. One powerful way to enhance the user experience in Salesforce is through PWR C...DiscussPWR Components
Harsh Vermaforcedev.hashnode.dev·Jun 1, 2024Pagination and Searching in Salesforce Lightning Tree GridIn Salesforce Lightning, the Lightning Tree Grid component offers a powerful way to display hierarchical data with rich features. However, implementing pagination and searching within the Lightning Tree Grid can enhance its usability and efficiency. ...Discuss·68 readsSalesforce
Harsh Vermaforcedev.hashnode.dev·Jun 1, 2024Salesforce Lightning (LWC) Tree Grid: A Comprehensive GuideHierarchical data structures are integral to many Salesforce applications, often representing complex relationships between records. Salesforce Lightning Web Components (LWC) offer powerful tools to visualize such data structures efficiently. In this...Discuss·66 readsLwc tree grid
Rohit Prabhakarsfdxrp.hashnode.dev·May 25, 2024Enhance Apex Data in LWC with the Spread OperatorOften, we encounter situations where we need to enrich the data retrieved from Apex with extra attributes. For instance, let's say we're fetching a list of account records in LWC from Apex. We might need to append an additional boolean attribute to e...DiscussSalesforce
Rakesh Vermarakeshverma.hashnode.dev·Apr 19, 2024Dynamic Lightning Web Component in SalesforceEnable dynamic component for LWC To get started with dynamic component for lwc, we have to enable it for the salesforce org. Setup -> Search for Session Settings enable Use Lightning Web Security for Lightning web components and Aura components This ...DiscussDynamic lwc
Harsh Vermaforcedev.hashnode.dev·Apr 19, 2024How to Create a Custom Notes Component in Salesforce Using Apex and Lightning Web ComponentTaking notes is an essential part of any business process, helping teams keep track of important information and collaborate effectively. In Salesforce, creating notes allows users to document crucial details related to various records, such as accou...Discuss·36 readslwc
Harsh Vermaforcedev.hashnode.dev·Apr 17, 2024Parent-to-Child Communication in Lightning Web Components (LWC)In Lightning Web Components (LWC), it's important for components to communicate well to make strong and scalable apps. One way they do this is by passing information from a parent component to its child components. We'll talk about how this happens b...Discuss·115 readspass data parent to child