Skip to main content

Posts

Showing posts with the label objects

Latest Post

How to Set Up Two-Factor Time-Based One-Time Password (TOTP) Authentication on iPhone Without Third-Party Apps

Unlocking an additional layer of safety to your iPhone is less difficult than you might suppose. With Two-Factor Time-Based One-Time Password (TOTP) authentication, you may bolster your device's protection and other website safety without relying on 1/3-party apps. Here's how you could set it up:

A Simple Way to Understand Salesforce

Introduction: Salesforce is a powerful cloud-based customer relationship management (CRM) platform that has revolutionized the way businesses manage their sales, customer service, marketing, and more. However, understanding Salesforce can sometimes be a daunting task for newcomers. In this blog post, we will break down Salesforce into simple terms and provide you with a basic understanding of its key components and functionalities.

jQuery search bar for visualforce page

Here is sample code for client side  search with the help of jQuery in visuaforce page. By using below code you can make FAQ type functionality or perform a search using specific phrase or word. In below sample code , We are using account details like name, phone.  Sample Code <apex:page controller="PageSearch" showHeader="false" doctype="html-5.0"  sidebar="false" applyHtmlTag="true" id="page" lightningStylesheets="true">     <html xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" lang="en">         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>         <head>             <meta charset="utf-8" />             <meta http-equiv="x-ua-compatible" content="ie=edge" />             <title> Salesforce Lightning Design System ...

Insert formatted data (HTML) in Rich Text Area

Here I am going to show you, How  to insert formatted data (table, colorful text etc) in rich text area field salesforce. We can directly use updated rich text area in our email templates without doing any extra code for email template. Here is sample code. //Heading for rich text area content. string body='<h3 style=\"color: #2e6c80;\">your heading :</h3>\n              <ol style=\"list-style: none; font-size: 12px; line-height: 32px; \">\n'; body += '<li style=\"clear: both;\"><b>'+Your Label Name+'  : </b> '+                     yourValue.replaceAll(';',' , ') +'</li>';  body +='</ol>'; yourRichTextAreaField=body; Below code is for table:-