Navigate to an Aura Component from another Aura Component
Lightning Framework is filled with a lot of features and one of them is to navigate between components. With this article, we will learn how we can navigate between components…
Lightning Framework is filled with a lot of features and one of them is to navigate between components. With this article, we will learn how we can navigate between components…
Checkout earlier posts in interview question series to read previous questions. 91. What are the lifecycle events? There are 4 events that get fired as per component rendering lifecycle: Init event -…
Checkout earlier posts in interview question series to read previous questions. 81. What are the considerations to make an apex method available for Lightning Components? You can make any server-side apex method…
Checkout earlier posts in interview question series to read previous questions.71. What is Lightning Data Service?Lightning Data Service aka LDS allows you to create, retrieve, delete or update Salesforce records without any…
Checkout earlier posts in interview question series to read previous questions.62. What are aura:methods, why we use those?Use to define a method as part of a component's API. This enables you to directly…
Checkout earlier posts in interview question series to read previous questions. Lightning framework is very powerful and tightly coupled with Salesforce resources and Apex. You can use aura reference “$A” to get…
In the world of a UI designer or developer, a pretty common use case is to create an autocomplete dropdown based on user's input. Unfortunately, we do not have a…
Do you want to give your data table's cells specific colors? Do you want conditionally colorize your base data table component? Are you bored of the same old plain data…
There are multiple drop-down base components available for us as part of Lightning Framework like <lightning:select> and <lightning:combobox>, but none of them support multi-option selection. In this post, we will…
Checkout earlier posts in interview question series to read previous questions. 44. How to render component conditionally? Conditional markup is a term to display or hide components based on some condition. Example,…