#selfie #mall
$LAYYYTER
RMH
2025 on Tumblr: Trends That Defined the Year
DEAR READER

blake kathryn
No title available
dirt enthusiast
styofa doing anything
todays bird
Sade Olutola
Stranger Things
Three Goblin Art
let's talk about Bridgerton tea, my ask is open

Love Begins

Discoholic 🪩
One Nice Bug Per Day
🪼
tumblr dot com
Monterey Bay Aquarium
Keni

seen from Canada

seen from United States

seen from Singapore

seen from Australia
seen from Singapore

seen from Türkiye
seen from El Salvador

seen from Malaysia
seen from Malaysia

seen from Japan

seen from Canada

seen from Malaysia
seen from Australia

seen from United Kingdom
seen from United States

seen from France

seen from United Kingdom
seen from Germany
seen from United States
seen from Germany
@ljarundeepan
#selfie #mall
#Sunday #roaming #shopping (at Brook Field Mall Coimbatore)
Independence day special (at Yercaud)
RED Bar on Fields in VisualForce
RED Bar on Fields in VisualForce
Some times we need to show vertical Red Bar on few fields, which are mandatory on certain scenario, such as mandatory only while creation but should be optional on editing exisiting records. In such case, we cannot use required = “true” attribute, because it will make check for mandatory in all the scenario.
This can be handled by adding few more lines to the visual force page, so that validation…
View On WordPress
Show error message in Visualforce Page
Show error message in Visualforce Page
Sometime we need to show error message on Visualforce page. We can implement this requirement by creating new instance of ApexPages.message and then adding message to Apexpages using ApexPages.addmessage. Then displaying these messages in visualforce page.
We can add 5 different types of message in Visualforce Page. In the example below, we are showing 5 input fields of account. We have added a…
View On WordPress
Salesforce Certified Force.com Developer - Summer '16 Release Exam
Salesforce Certified Force.com Developer – Summer ’16 Release Exam
Que 1:-What are two features of Lightning Design Tokens? Choose 2 answers
A. Define essential values of visual design B. Only one token file can be created per Org C. Reuse throughout Lightning component CSS resources D. Cannot use Developer Console to Create Token Bundles
Que 2:-Which are the new Objects & their use case? Choose 3 answers
A. LinkedArticle – Attach Knowledge articles to…
View On WordPress
Client-Side VisualForce Pagination with Pajinate
Client-Side VisualForce Pagination with Pajinate
Pagination is an essential, and not so easy to implement user interface device that allows the developer to break long lists of items, or one very long item into sub-pages. I love the challenge that pagination brings (who doesn’t really) when developing efficient and reusable server-side code, but this article isn’t about that. Sometimes I need things done quickly, easily, and preferably with as…
View On WordPress
A better way to work with jQuery selectors and Visualforce Component Ids
A better way to work with jQuery selectors and Visualforce Component Ids
This tricky topic had me puzzled for some time and in earlier posts I went the way of using CSS classes to identify DOM elements; but was always a touch dissatisfied with the solution. Not only is it less efficient – valid XHTML pages should only have one element with any Id, although CSS classes can be shared by many elements – but it also feels all hacky ‘n stuff. I’m a bit older now, a bit…
View On WordPress
I recently came across an interesting discussion where adding new field to a Object broke some of existing code. It’s strange right, mostly removing or renaming fields is risky, as they could break some String expressions or merge fields.
Here is the error in one of the possible form for “Name” field
Unknown property ‘VisualforceArrayList.Name’ Error is in expression ‘{!Contact.Location__r.Name}’…
View On WordPress
Salesforce MVP - Are you a good candidate ?
Salesforce MVP – Are you a good candidate ?
How can I become a force.com MVP ?
How do you become force.com MVP ?
I’m awesome community guy, nominate me as MVP !
Many people voted for me, why I was not selected as MVP ?
Lets take each point in bit detail. #1 – How can I become a force.com MVP ? To start read official developer force MVP page. My fellow MVP Ankit has written a great post that covers it in depth, read it here – How Can I…
View On WordPress
Using "Chrome Mobile Emulator" for testing Salesforce 1 Mobile Apps
Using “Chrome Mobile Emulator” for testing Salesforce 1 Mobile Apps
Using “Chrome Mobile Emulator” for testing Salesforce 1 Mobile Apps
If you are developing Salesforce 1 mobile apps, and struggling to test the same, on different mobile devices, geo locations and network conditions, following video might be good help:
Resources
Chrome Mobile Emulation: Learn more about it from this article.
Chro…
View On WordPress
Cancelling out of HTML5 browser validations !
Cancelling out of HTML5 browser validations !
This post is based on a short scary movie, I was working on a cool HTML-5 page
<apex:page .... docType="html-5.0"/>
But all the coolness disappeared when powers of CANCEL button are gone. The typical Cancel button in salesforce, which is always tough enough to get out of any validation, i.e.
<apex:commandButton action="{!cancel}" value="Cancel" immediate="true" />
On hitting the cancel…
View On WordPress
20 SITES EVERY FORCE.COM DEVELOPER SHOULD BOOKMARK
20 SITES EVERY FORCE.COM DEVELOPER SHOULD BOOKMARK
The Salesforce developer ecosystem is expanding nearly as fast as my waistline and it’s hard to keep up with all of the new developments. There are three releases per year that unleash a flood of new features and upgrades plus the push for Salesforce1 Lightning is in full swing. How do you stay informed? I’ve put together a number of resources that you should bookmark and check often for the…
View On WordPress
Difference Between Workflow and Process Builder
Difference Between Workflow and Process Builder
Recently SalesForce introduced a new feature called Process Builder (available to Enterprise and Unlimited editions). The purpose of the Process Builder is to further enhance on the Workflow functionality already available in SalesForce. Presently, with Workflows, you can do any of the following with ease:
Perform field updates
Send automated emails
Create tasks
However, as you can see in the…
View On WordPress
Useful Excel Formulas for Salesforce
Useful Excel Formulas for Salesforce
With SalesForce, ideally you can do everything up in the cloud. However, there are times you have to prepare data for upload into SalesForce. When that happens, often it is fairly easy to prepare data for import. But if you are doing an update (on a record), because of the way SalesForce structures their record IDs, there are two major gotchas! They are:
The Record IDs are case sensitive.…
View On WordPress
TrailHead
Most of you have likely heard about SalesFprce Trailhead. But if you haven’t, you are missing out on a great resource in your SalesForce tool belt.
SalesForce Trailheadis a free to use, self driven, educational tool available to all SalesForce users. Unlike the SalesForce training videos, Trailhead is designed more for those who like to read with some audio visual content. But where it lacks in…
View On WordPress
Best Practices - Salesforce
Best Practices – Salesforce
1. Whenever writing test methods (for any test class) make sure test data is created from a single location. Factory pattern is the example. By following this way, if any validations are added to an object, same can be tackled without breaking any code.
2. Try using standard set controller pagination option provided by Salesforce when doing pagination. Now we have also got OFFSET keyword which…
View On WordPress