Category: Others (Technical)
Difference between flows, workflows and process builder in Salesforce
Workflows enable us to set up rules that are evaluated and the corresponding action is executed based on the type of change in record. Few common cases in which workflows are used are: 1. Create a new task on an
Adding Image Upload feature in GrapesJS editor
In GrapesJS, there is an ‘image’ block which we can drag and drop on the canvas but it only allows us to specify URL of the image to add to Asset Manager. Then we can embed that image in the
Preserving checkbox state in Jquery datatable with pagination
Problem:Let us assume you have many records in Jquery data table with multiple pages. You have rows with checkboxes. Now, If you want to select checkboxes from different pages of the data table and submit the page it will only
Salesforce Sandbox – introduction, uses and limitations
Salesforce Sandbox is intended for coding and testing by a single developer. This is an environment in which currently ongoing changes can be done until they’re ready to be deployed in live. There are several different types of sandboxes available:
Alter AWS S3 file permissions using S3 cmd
How to alter permissions of all files or files with a specific extension via s3 command line client tool (Linux)? S3 command line tool (S3 cmd) allows us to alter permissions of files and files with specific extensions inside S3
JqueryUI | Unable to drag elements to the front
Problem: When we add draggable elements dynamically or even statically elements created subsequently will have higher z-index than the elements created before these elements which cause the problem of overlapping on dragging the image. When we drag element with lower
Open Send Email form on Custom Button click in Salesforce
In Salesforce, how to open standard ‘send email page’ by clicking a custom button located on Detail Page of a custom/standard Object? Steps to open an Email Page from Custom Button: 1. Add a custom button first. Go to Custom
Read Word document using Apache POI (Java)
Read Word document using Apache POI (Java) : To read any document (.doc or .docx) or excel document in java, there are several libraries but Apache POI is pretty good. Using this library we can read word documents line by
Create animated hover effect without Using jqueryUI
We can add animated hover effect using css and html also. See example below: Create simple html code like this: <div class=”co-sm-12 blog-categories”> <h4>Categories</h4> <ul> <li><a href=”#”>Customizable Courseware</a></li> <li><a href=”#”>Online Learning</a></li> <li><a href=”#”>Skills Assessments</a></li> <li><a href=”#”>Quick References</a></li> <li><a href=”#”>Exercise Files</a></li>