Blogs
-
Providers of Value in Salesforce Lightning
Value providers are a way to access data. Value providers encapsulate related values together, similar to how an object encapsulates properties and methods. The value providers for a component are v (view) and c (controller). v (View) Value Provider: This value provider enables you to access the value of a component’s attribute in the component’s markup.…
-
Employing the runAs Method in Salesforce A Guide for Apex Developers
By and large, Apex code generally operates within the framework mode, where the current user’s permissions and record access are not taken into account. The framework method known as runAs enables you to construct test methods that temporarily change the user context to that of an existing or alternate user. This facilitates enforcement of the…
-
Exploring System Events in Salesforce -Your Comprehensive Guide
“The Lightning framework autonomously triggers system events during component initialization, alterations in attribute values, rendering procedures, and more. All components have the capability to subscribe to system events within their HTML markup. These events are manageable within Lightning apps, components, and even the Salesforce mobile app. A handful of examples of system events are provided…