By Vincent on February 18, 2011
This blog post is mainly a summary of what i just read in the SFDC Dynamic VF Bindings section of the documentation for version 21.0. Pretty cool stuff. This will allow programmers to make VF pages even more Administrator friendly (as opposed to be Developer only territory). So Dynamic Visualforce Bindings allow VF pages to [...]
By Vincent on February 2, 2011
Ran into a strange “bug” today while developing a VF page. This VF receives parameters through the URL which the VF Controller class parses out and stores in a class variable. The VF page also has an <apex:outputPanel> section which is rendered if the URL parameter equals a specified Custom Label. The code looks like [...]
Add a Comment »
By Vincent on February 1, 2011
Just a little lesson learned as to how Scheduled Classes are treated in Salesforce.com. When a class is scheduled for execution using the “Schedule Apex” button, the class is instantiated immediately and then held in memory until the time it should run. This means that the constructor code of the scheduled class is run when [...]
Add a Comment »