Asynchronous Apex
Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations
Using Google Search Operators
Using Google Search Operators for Better Results Google defines Search Operators as the “words or symbols in one’s search phrase that make the search results more precise”. These operators have their basis in coding as they are nothing but shortcuts
Understanding Azure Functions with Example
What are Azure functions? Example of Invoking Azure functions inside the Logic App. Azure Functions In General, functions are used to run the small pieces of code to make it reusable. Similarly, Azure functions are used to run the small
Error:Lightning components request My Domain
Handling Error : Lightning components I had created a lightning application but while running it I was getting this error: Error : Lightning components request My Domain. Please contact your System Administrator for more information. Solution: To use Lightning application
Customized multi row selection in Devextreme Datagrid
Customized multiple row selections in Devextreme Datagrid with dxRadiogroup as a Custom Column Field I am using Devextreme jquery datagrid with paging options implemented that involves setting permissions for user. The target here is to update the datasource and dxRadiogroup
Error : “Bad value for restricted picklist field while creating records”
In salesforce, a picklist can be dependent on a global picklist value set or it may be defined manually while creating field. Above error occurs when we try to create a record along with a value set for the picklist.
How to create Bootstrap Carousel?
Learn How to create Bootstrap Carousel The carousel is a slideshow for cycling through a series of content. It is also known as image slider. It also includes support for next and previous controls. Now, let’s see how to create
PostgreSQL – Server doesn’t listen error
How to fix PostgreSQL server doesn’t listen error While trying to connect to Postgress you may face this error – Server doesn’t listen. Error: This is not an error exactly but an exception that occurs when we are running two
How to get Lat, Long in React Native app
Steps to access GPS in React Native app to capture lat/long In your AndroidManifest.xml add following permissions: <uses-permission android:name=”android.permission.ACCESS_FINE_LOCATION” /> it comes enabled by default on iOS but not Android. There are three methods available for geolocation: getCurrentPosition allows us
How to read Mobile Hardware and Operating system Details in Ionic
Steps to read Mobile Hardware and Operating system Details in Ionic To get the mobile hardware and operating system information you can use device plugin in ionic framework. Installation: $ ionic cordova plugin add cordova-plugin-device $ npm install @ionic-native/device Platform: