Author: Webner
Using Developer Console in Salesforce
Executing Apex code in the developer console Login to Salesforce and switch to classic and click Developer Console Click to debug -> and click “Open Execute Anonymous Window” or Ctrl/E Write code in the window and execute as following After
Using Devexpress Grid Control with List object in Windows Form C#
From the toolbox window, check the Data and Analytics section in the toolbox menu and drag & drop the GridControl on your windows form. Devexpress Grid control uses Views to present data from a bound data source. With the help
Salesforce | Lightning Navigations in LWC
Lightning Navigations are used to generate a URL or navigate to a page reference. With lightning navigation, we can navigate to Pages, Records, Lists, Webpages, Custom tabs, Reports, etc. There are the steps to use the navigation in LWC: Step
How To Fix Busybox Initramfs Error On Linux based OS
Some time our OS boot process gets stuck to the BusyBox shell and ends up at the initramfs prompt. ERROR: —————————————- BusyBox v1.27.2 (Ubuntu 1:1.27.2-4ubuntu3.2) built-in shell (ash) Enter ‘help’ for a list of built-in commands. (initramfs) —————————————- SOLUTION: Type
Service layer in Angular
Angular service is very useful to organize business logic or data in the different components of an application. The methods written in the service file can be invoked from different typescript files of a component. The controller is responsible for
Hooks in React
Hooks are the new feature of the react. They let you use the state and other features of React without creating a class. They are mainly used to handle state and other side effects in react functional components. Side effects
Displaying the records from multiple related Salesforce Objects on a Lightning Web Component.
The records from a single Salesforce Object can simply be displayed in a Lightning Web Component by using the lightning datatable, but in order to display the records from multiple objects on the same Lightning Page, we need to use
Collections
Collections: It holds many values or objects in a specific series. The two types of collections in C# : Non-generic collections Generic collections NON-GENERIC COLLECTIONS Hierarchical structure of non-generic collections: <interface> IEnumerator <interface> IEnumerable <interface> ICollection <interface> IDictionary Hashtable Sorted
How to Pass Data From one Component to another Component in Lightning Using Events
We can send data from One Lightning Component to Another Lightning Component using Events. We can use Application Events to send data from one Lightning Component to another. We have to follow 4 steps to send data from one component