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
New features in Laravel 5 and higher versions
The list of some new and useful features in Laravel 5 and higher versions 1. Migrate:fresh Command: Refresh command runs all the down methods from database migrations. There may be some cases where down method for some database migrations are
Creating a PDF on Air and Send as Attachment
How to create a PDF on air (in a variable) and sending it as an email attachment? Problem:- I need to create a PDF and send it as an attachment with email but I don’t have permission to write a
Introduction to Salesforce Community Cloud
Introduction to Salesforce Community Cloud and Steps to create and customize it Communities are like portals or support sites for connecting important people. Communities improve engagement with your Customers, Partners, and Employees. You can create multiple communities inside your salesforce
Bulk upload files to AWS S3 bucket
How to bulk upload files to AWS S3 Bucket (using Laravel) Amazon Simple Storage Service (Amazon S3) is used to store and retrieve any amount of data, at any time, from anywhere on the web. While storing data to AWS
How to install, update and create module using NPM
What is Node Package Manager (NPM), how to install, uninstall and update It? How to create module in Node JS? NPM is a package manager for JavaScript programming language. It is basically an online shared repository where we can find,
Convert HTML to pdf using mpdf plugin in cakePHP
How to use mpdf plugin in cakePHP to convert HTML documents to pdf? mPDF is a PHP library which is used to generate PDF files from HTML Documents. It converts utf-8 encoded documents and also supports almost all languages including
Salesforce | Different ways to use datepicker on visualforce page
1. Apex:inputfield: We can simply use apex:inputfield and bind the field with date type field and it will automatically use the Salesforce Calander: <apex:page standardcontroller=Contact> <apex:form> <apex:inputfield value=”{!Contact.Birthdate}”> </apex:form> </apex:page> 2. Apex:inputtext: <apex:page standardcontroller=”testcontroller” id=”vfPage”> <apex:form> <apex:inputText label=”Birth Date” value=”{!birthdateVariable}”
Bootstrap tooltips customization with Examples
How to create and customize Bootstrap tooltips (with examples) A tooltip is a small pop up that appears when user places mouse pointer over an element such as link, button, icon or any other element to provide information about the
Salesforce custom tabs not visible in production org
Salesforce custom tabs, which are a part of the Managed Package Problem : I had added 3 custom tabs to a managed package and deployed the package in production org. I am able to see them in the developer org