Category: Web Development
Explain the Server Session State pattern with an example in C Sharp
Server Session State is a design pattern used in web applications to maintain the state of a user’s session on the server side. This means that instead of storing the session state on the client side (e.g., in cookies), the
The role of DevOps in software development
Role of DevOps DevOps is a rapidly growing practice that combines the roles of software development and operations to improve collaboration and efficiency in the software development process. The goal of DevOps is to deliver software faster, with higher quality
Dispatch event from child to parent in LWC
In LWC (Lightning Web Components), you can dispatch an event from a child component to its parent by using the standard CustomEvent API. Here’s an example of how you can do it: In the child component, create a custom event:
LWC using the aura component
Step 1: Launch the developer console and add a lighting component (also known as an aura component). Step:2 Fill in the details in the pop-up box below and click “Submit.” It will create a component like the one below. Download
Comparable Interface in Apex
When we have to sort a custom object list, based on a field, we try doing it by SOQL query ORDER BY but sometimes due to any constraint or some complex requirements we need to sort the list in Apex
How to work with Button to Delete records from List view Page of Subject
The below Screenshot is showing delete button on the list view page of the object. Following is the code for the same (clicking the Delete button on the list view page which will get a list of Ids of select
Getter in LWC
LWC component does not allow us to perform expressions in an HTML file so if we want to achieve any expressions in an HTML file in this case we can complete the expression in our getter in a .js file
WOPI based document editor for Office files
WOPI based document editor for Office files WOPI (Web Application Open Platform Interface) protocol is Microsoft’s platform to integrate Office Online within your application. To make use of Wopi, you would require to become a member of the Office 365
Rest CallOut in LWC
Rest CallOut can be made in Salesforce in two ways: Server-side controller (Apex Class) Client-side controller (Js Controller) Server-side controller (Apex Class): We can make an API callout from Apex , which provides support for REST and SOAP callouts. Before
