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
How to use Bootstrap pagination
How to use Bootstrap pagination Steps to use Bootstrap pagination: 1. Create a simple html file. 2. Include bootstrap css and js CDN link in html file. Example : <!doctype html> <html lang=”en”> <head> <!– Required meta tags –> <meta
Some important features in Laravel Framework
Some important features in Laravel Framework 1. Artisan: Artisan is a command-line interface tool which is provided by laravel. By using this tool, users can create database structure. It is also used for creating the MVC files right away which
Popular Open source tools for stress testing of a web application
Popular Open source tools for stress testing of a web application What is Stress Test? Stress test is kind of real-time diagnostics performance test of a web application in order to determine the stability of your web application under heavy
Drag and Drop in Jquery UI
Drag and Drop in Jquery UI Problem: Jquery UI provides APIs to make DOM elements draggable and droppable. We can do some things out of the box by using its APIs. I have written a Jquery code below in which
Steps to configure Selenium webdriver in Eclipse
Before we download and install selenium webdriver and eclipse, we need java which is prerequisite that must be installed in our system. Following activities need to be performed during configuration: 1. Steps for configuration of eclipse IDE: 1.1. Go to
Create Salesforce Custom Object Using Apex Code
Salesforce custom object using apex code There are two ways of creating a custom object and its related fields in Salesforce. The first and the easiest way is to go to the Objects link beneath Create tab, click on the new
How To Install WordPress On Windows
Installation Process of WordPress on Windows We need WAMP or XAMPP to setup our own local server environment and install WordPress on Windows. Here we will discuss how to install with xampp assuming that xampp is already installed on the
Allow the Cross Origin Request (CORS)
Cross Origin issue is resolved by adding header(“Access-Control-Allow-Origin: http://yoursite.com”); to allow the particular origin or we can also allow all the origin by replacing the path to *. For Cake php header is defined in file public/index.php. Code: header(“Access-Control-Allow-Origin: http://yoursite.com”);
Creating a Lightning Custom Page/App
We can access different features of Salesforce on a single page by building a custom Lightning App: 1. Multiple features of salesforce on one page 2. Custom homepage 3. Edit layout of objects like adding tabs, flows, hierarchy etc. Steps