About Webner

We are a software development company in India.
11 06, 2021

Salesforce | Iterate list in LWC

2021-06-11T05:13:52+00:00June 11, 2021|Salesforce|0 Comments

|
| ByWebner

In LWC, we have two ways to display the list of records in our web component for:each: for:item=”currentItem”: This is used to access the current item. for:index=”index”: used for accessing the current item’s index. key={uniqueId}: used to assign a unique [...]

9 06, 2021

Rename package name in React-native

2021-06-09T04:30:04+00:00June 9, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

In react-native, To create a new application we use the following command: react-native init MyApp This command will create a package name with com.myapp. Sometimes, if your application is created with the wrong package name or bundle id or you [...]

7 06, 2021

Installing and using Pyinstaller

2021-06-07T05:12:43+00:00June 7, 2021|Web Development|0 Comments

|
| ByWebner

You can install it through pip using this command: Pip install pyinstaller Usage: pyinstaller path_to_your_script.py PyInstaller reads your Python program, analyzes all the imports it makes, and binds copies of those to the program. The user can launch the integrated [...]

31 05, 2021

Org Browser on VS Code in Salesforce

2021-05-31T05:10:45+00:00May 31, 2021|Salesforce|0 Comments

|
| ByWebner

The Org Browser helps us to view all the available metadata types and their relating components in your default org. With the help of this feature, we can retrieve the metadata source easily without using a manifest file. The non-scratch [...]

27 05, 2021

Dependency Injection in C Sharp

2021-05-27T06:21:35+00:00May 27, 2021|Web Development|0 Comments

|
| ByWebner

To understand the term Dependency Injection, we must know what is Dependency and IoC? In terms of Object-Oriented Programming, Suppose Class A uses Class B for one of its jobs. Here Class B is a dependency of Class A and [...]

25 05, 2021

About Salesforce Queues

2021-05-25T05:57:43+00:00May 25, 2021|Salesforce|0 Comments

|
| ByWebner

The collection of records without any owner are the Salesforce Queues. Only the users having permissions to the queue can examine every record of it and can claim ownership of any of them. Queues are basically used to assign/distribute/prioritize the [...]

18 05, 2021

Introduction to DevOps Architecture

2021-05-18T05:27:20+00:00May 18, 2021|Web Development|0 Comments

|
| ByWebner

In Software Engineering, Operations and Development both play crucial roles in order to deliver the results of an application. The development consists of analyzing the requirements, designing, developing, and thereafter testing the software components in the testing environment. On the [...]

13 05, 2021

Salesforce | Decorators in LWC

2021-05-13T04:52:56+00:00May 13, 2021|Salesforce|0 Comments

|
| ByWebner

There are three decorators in lightning web components. These decorators add functionality to property or function. @api: To expose a public property, decorate this with @api. Public properties are reactive which means changes to the value of a reactive property [...]

7 05, 2021

Laravel Relationships in Eloquent

2021-05-07T05:58:31+00:00May 7, 2021|Web Development|0 Comments

|
| ByWebner

Laravel relationship tables are frequently associated with each other in the database. Laravel relationships in eloquent support different types of relationships and it’s easily working and managing data. Defining relationships:- One to One One to Many Many to Many Has [...]

4 05, 2021

Javascript Array Methods One Must Know

2021-05-04T12:55:47+00:00May 4, 2021|Web Development|0 Comments

|
| ByWebner

filter The filter is an array function in vanilla.js which returns a new array by filtering the filter item provided to the filter function. Here is ES6 syntax for this function: Reduce This function basically executes a given function provided [...]

30 04, 2021

Test Class In Salesforce

2021-04-30T06:40:00+00:00April 30, 2021|Salesforce|0 Comments

|
| ByWebner

Test Class is an important part of the salesforce. Test Class is a class where we test our written working code that means the code is working right or not. In the Test Classes, we made the dummy data by [...]

19 04, 2021

How to get Salesforce Custom Field Ids in Apex

2021-04-19T09:38:27+00:00April 19, 2021|Cloud, Salesforce|0 Comments

|
| ByWebner

We can get the Ids of Salesforce Object’s custom fields in the Apex code using Tooling API. Following is the example code for the same: String objectDevName = 'ObjectName'; ToolingAPI toolingAPI = new ToolingAPI(); List objectData = (List)toolingAPI.query('Select Id From [...]

Go to Top