About Webner

We are a software development company in India.
7 02, 2022

Rest CallOut in LWC

2022-02-07T05:39:16+00:00February 7, 2022|Insurance, Web Development|0 Comments

|
| ByWebner

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 [...]

4 02, 2022

Mustache Templates in Totara

2022-02-04T05:55:15+00:00February 4, 2022|Web Development|0 Comments

|
| ByWebner

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 [...]

2 02, 2022

What are the ACORD Forms/Certificates?

2022-02-02T06:09:24+00:00February 2, 2022|Insurance|0 Comments

|
| ByWebner

Introduction ACORD stands for Association for Cooperative Operations Research and Development is an international organization that provides standardized certificates and forms in the sector of insurance and related financial services industries. ACORD was established in 1970. In its earlier time, [...]

31 01, 2022

Read PDF content using Selenium

2022-01-31T06:01:18+00:00January 31, 2022|Software Testing|0 Comments

|
| ByWebner

To read PDF document file in Selenium, we can use a Java library called PDFBox. Apache PDFBox is an open-source library that helps in managing PDF files. We can use it to verify the text or images present in the [...]

28 01, 2022

What is the National Producer Number and who assigns it?

2022-01-28T04:34:52+00:00January 28, 2022|Insurance|0 Comments

|
| ByWebner

National Producer Number: NPN is a unique NAIC identification number that is assigned through the National Association of Insurance Commissioner’s which is used to track individuals and business entities. It is assigned through the license application process. The National Insurance [...]

24 01, 2022

Null Object Pattern in C#

2022-01-24T05:40:59+00:00January 24, 2022|Web Development|0 Comments

|
| ByWebner

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 [...]

21 01, 2022

MVC Pattern in C Sharp

2022-01-21T06:08:02+00:00January 21, 2022|Web Development|0 Comments

|
| ByWebner

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 [...]

19 01, 2022

Homeowner Application Coverages

2022-01-19T05:56:00+00:00January 19, 2022|Insurance|0 Comments

|
| ByWebner

Homeowner Insurance helps you protect your home in case of any hazard, or an accident. A few of the coverages that fall under Homeowners insurance are: Dwelling Dwelling coverage in the homeowner’s application helps you to pay for the repair [...]

17 01, 2022

Inheritance in Apex

2022-01-17T05:47:33+00:00January 17, 2022|Salesforce, Web Development|0 Comments

|
| ByWebner

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 [...]

11 01, 2022

Decorators in Lightning Web Component

2022-01-11T05:48:08+00:00January 11, 2022|Salesforce|0 Comments

|
| ByWebner

The Lightning Web Component has three decorators. @api @track @wire @api: If we want to pass any variable from Parent component to child component then we use @api decorator. To pass data to the child component, we need to define [...]

7 01, 2022

Custom font in Visualforce Page

2022-01-07T05:11:55+00:00January 7, 2022|Salesforce|0 Comments

|
| ByWebner

We can use custom fonts in the Visualforce page using Salesforce Static Resources. Following are the steps to use custom fonts: In Setup, use the Quick Find box to find Static Resources and create new a resource with ZIP of [...]

5 01, 2022

Insurance Endorsement

2022-01-05T06:11:11+00:00January 5, 2022|Insurance|0 Comments

|
| ByWebner

Insurance Endorsement? An endorsement is a policy modification that can be made throughout the policy's term without having to renew it. As a result of the endorsement, your premiums may change. They're commonly found in property and casualty insurance plans. [...]

3 01, 2022

Multi-Car Credit In Auto Insurance

2022-01-03T05:12:14+00:00January 3, 2022|Insurance|0 Comments

|
| ByWebner

What Is a Multi-Car Insurance Policy? A multi-car insurance policy covers multiple cars, trucks, or other vehicles. You can save money by bundling your automobiles. This strategy is also known as a "schedule of cars" policy or a "many vehicle [...]

29 12, 2021

Object Pool Design Pattern

2021-12-29T05:42:12+00:00December 29, 2021|Web Development|0 Comments

|
| ByWebner

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 [...]

23 12, 2021

Drag and drop .url issue

2021-12-23T05:36:41+00:00December 23, 2021|Web Development|0 Comments

|
| ByWebner

Chromium-based browsers (chrome and edge) recently produced issues related to drag and drop hyperlink HTML elements. I had a list of file names in the grid in my application and file names were created as hyperlink (<a></a>) elements which were [...]

21 12, 2021

Bulk State Transition

2021-12-21T05:37:15+00:00December 21, 2021|Database, Salesforce|0 Comments

|
| ByWebner

The Bulk State Design pattern is the general pattern that executes the bulk of the actions in Apex based on the change of state of one or more records. Bulk transitions increase the code reusability by allowing only records that [...]

Go to Top