A proprietary Java-like programming language for the Force.com Platform.
1
vote
0answers
21 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
20 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
61 views
1
vote
1answer
36 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
274 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 ...
3
votes
1answer
82 views