Introduction to Lightning Card in Lightning Web Components (LWC)

Introduction to Lightning Card in Lightning Web Components (LWC)

The lightning-card is a base Lightning Web Component that provides a visually consistent way to display content in a container with a header and body. It’s widely used in Salesforce to display information in an organized, card-like structure. In this article, we’ll explore how to use the lightning-card, its properties, and examples to enhance your … Read more

Toast Notification in Lightning Web Components (LWC)

How to develope Toast Notification in Lightning Web Components(LWC)

A toast notification is a small, temporary popup message that appears on the screen to give users quick feedback, like success or error messages. Toasts are commonly used in apps and websites to inform users about actions like form submissions or saved changes. In this article, we’ll learn how to create and customize Toast notifications … Read more

Rendering a Visualforce page as PDF

How to render Visualforce Page as PDF?

In this article we will learn how to render a visualforce page as PDF in Salesforce. In order to render a visualforce page as PDF you have to set renderAs attribute to PDF. Have a look at below code example where I have created a Visualforce page which is rendered as PDF. PDF will display … Read more