Category: Web Development
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
Mustache Templates in Totara
To write blocks of HTML directly in php/javascript by concatenating strings, a template is an alternative. Totara provides the templating language that is called Mustache. This is a new way to render the output. But, the output of using templates
Null Object Pattern in C#
The null object pattern is designed to handle the null exception of objects without implementing too many null checks in the application. This is done by identifying the behaviour that should occur when a null is encountered and declaring a
MVC Pattern in C Sharp
Introduction MVC stands for Model View Controller. It is a software architectural pattern that splits the application into three parts: model, view, and controller. The model is the data, the view is the user interface, and the controller connects the
Inheritance in Apex
Inheritance is a feature of OOPS that allows us to inherit the properties or methods of a class. The base class acts as a parent, the class that is inheriting is called the child class. The child class has access
Object Pool Design Pattern
Definition While building applications, there are objects that are expensive to build in terms of the system resources that they require. Creating such objects, again and again, will impact the overall performance of the application. To prevent the overall work