Salesforce makes it easy to work with records in bulk using List Views, but when it comes to deleting multiple records directly from a List View — there’s no native “Delete Selected” button. That’s where this solution comes in! In this blog post, we’ll show you how to create a custom List View button thatContinue reading “How to Create a List View Button to Delete Selected Records in Salesforce”
Category Archives: Visualforce Page
Implementing reCAPTCHA v3 in Salesforce
Implementing reCAPTCHA v3 in Salesforce involves integrating the reCAPTCHA v3 API into your Salesforce org to add an additional layer of security to your web forms and prevent spam or abusive bot traffic. Here’s a step-by-step guide to implementing reCAPTCHA v3 in Salesforce: Replace YOUR_SITE_KEY with your reCAPTCHA site key. Replace YOUR_SITE_KEY with your reCAPTCHAContinue reading “Implementing reCAPTCHA v3 in Salesforce”
Introduction to Visualforce
Introduction Visualforce is a framework that allows developers to build custom user interfaces that can be hosted natively on the Force.com platform. The Visual Force framework includes a tag-based markup language, similar to HTML. Developers can write/modify visualforce pages and associate their own logic with a controller class written in Apex. Where we can use visualforce pages? Visualforce pages can beContinue reading “Introduction to Visualforce”
QR Code Scanning
Download javascript file from here and upload as static resource in your salesforce org with name ‘Html5QRCode’ Now create a visualforce page using below code- Above code is self explanatory. Upon successful scanning, this code will redirect you the website related to your QR code. Credit for this QRCode JS library goes to Minhazav
Salesforce Chat Agent (Advanced)
This blog assumes you have basic understanding of chat agent configurations. So once you have created ‘Embedded Service Deployments’, you have to ‘Chat Code Snippet share it to the customer portal. Now there is below requirement- For Available Chat Agents- New Contact should not be created. Contact should be searched based on combination of firstContinue reading “Salesforce Chat Agent (Advanced)”
QR Code Scanner in Salesforce
Currently we have in-built QR code scanner in Salesforce. But problem with this scanner is that it only supports salesforce mobile app and some clients wants to use scanner through desktop browser which can scan QR Code using any camera attached to the desktop. So I have found a custom solution for this so thatContinue reading “QR Code Scanner in Salesforce”