Blogs
-
How to present a list of text with bolded information sourced from Apex code
Problem In our scenario, I need to display a list of text in our Visualforce page. Some part of the text needs to be bold. I will explain this with the below simple but not working example: page: Controller: Obviously the strong tag here doesn’t work. I can walk around this if the number of…
-
How to Decode JSON Response in Apex Salesforce.
Synopsis There have been instances when I found myself uncertain about the process of parsing a JSON string to extract the desired information. Now, let’s explore how this can be accomplished. Example JSON This is the simplest method I’ve attempted so far. Just copy the JSON string above and utilize the Apex generator tool to…
-
Retrieving extensive amounts of data in Apex.
I am looking for a solution where i have a scenario to query large volume data and do an update on them. Is there a way i can do, query once and then querymore on that object instead of getting all the data at once and over-boarding the system. Please let me know, is there…