A proprietary Java-like programming language for the Force.com Platform.
2
votes
1answer
65 views
Displaying multiple Google Maps markers on a Visualforce page
I hope this is the right board for this. I am a novice programmer and I am trying to learn how to write better code. I have a visualforce page with a very long Javascript script in the middle of it to ...
3
votes
1answer
48 views
building a search functionality
I am trying to search account table by providing a search string. I am building a query based in different conditions and then adding the returned records in a list.
The functionality is working ...
2
votes
1answer
39 views
Refactoring APEX to keep all database calls outside of for loops
I have the following APEX code. I have been trying for hours to try and refactor it so that the SOQL query is outside of the for loop without any luck. Any ideas?
...
1
vote
0answers
45 views
Salesforce Report that searches long text fields, has customizable view, easy to update, etc
I got really tired of how ugly and inflexible Salesforce Reports are. So I made this Apex/Visualforce combo that searches long text fields, makes adding and removing fields a snap, has a customizable ...
1
vote
0answers
40 views
Salesforce Trigger Logic
The following code is inside a before insert / before update trigger. Essentially what I have in our app is that when a request type (request.Type__c) is chosen, the scheduler (request.Scheduler__c) ...
1
vote
0answers
356 views
1
vote
1answer
39 views
Detecting Windows Phone and Tablet clients
This is called from a VF page,
styleClass="{!IF(isWindows8Device, 'windows', 'not_windows')}"
So if it's a windows device, return true.
The best thing to do ...
2
votes
2answers
438 views
Account hierarchy
I had posted a question some time back for the best way of doing an account hierarchy, and this is the way implemented at last.
Can someone point out any obvious flaw in this (other than SOQL)?
The ...
4
votes
1answer
98 views