Following are two posts from Jeff Douglas and Richard Vanhook nicely illustrating with sample code on how to develop the pagination using Apex.
Salesforce.com introduced the StandardSetController in Winter ‘09 and Jeff documents the new pagination feature as pretty powerful and easy to use with standard as well as custom objects. Read More @
http://blog.jeffdouglas.com/2009/07/14/visualforce-page-with-pagination/
Pagination in VisualForce [...]
Attended the Dreamforce Google Wave sessions, and guess what got an Google Wave Invite.
Here’s your chance to give Wave a try for yourself. Enter your email address below and the last five digits of your Dreamforce badge below and we’ll send you an invite to give Wave a ride.
http://bit.ly/dreamforcewaveinvite
Share and Enjoy:
Ran into an (other) interesting Internet Explorer bug. Seems that if you have a form with only a single text input, hitting the enter button will not submit the form in IE.
<form action="" method="post"> <fieldset> <label for="user_name">User Name</label> [...]
The Workbench has exposed an API to allow users to automatically log in to the Workbench by providing their Server URL and Session Id in the URL arguments. This can be to integrate the Workbench into a Web Tab directly in Salesforce for single sign-on into the Workbench.
To integrate the Workbench into your org, follow [...]
Steps to Schedule Apex
Define Scheduled Apex Class
global class scheduledMerge implements Schedulable{
global void execute(SchedulableContext SC) {
mergeNumbers M = new mergeNumbers();
}}
Run the system.schedule Anonymous Code to Schedule the Apex Class (Read More on System.Schedule @ http://tinyurl.com/yg2d7qj)
Setup | Monitoring | Scheduled Jobs to list the above Scheduled Job
Steps to Update Scheduled Apex Code
Delete the Scheduled Job from Setup [...]
Outbound HTML emails are tracked by default if your organization uses HTML email templates. You can select or deselect this setting at Setup | Customize | Activities | Activity Settings to control email tracking. If you disable email tracking, email tracking information for your organization is no longer stored. However, the HTML Email Status related [...]
Jeff
The addition of asynchronous Web service callouts to external services is a feature that developers have been requesting for quite awhile in Salesforce.com. Using the new @future annotation, your methods execute the callout when Salesforce.com has resources available. One of the great benefits is that it allows you to perform callouts during trigger executions.
Today, I [...]
Following is the snippet of anonymous code which will help you to schedule your apex for any interval. The Time parameter is not well structured and because of it I had to put in efforts in compiling the time parameter.
I am documenting all the parameters neatly, which will help you to schedule apex to [...]
In possible good news for a faltering animation industry in India, NASSCOM has forecasted that the industry will grow to USD 1 billion by 2012 from an estimated USD 494 million in 2008.
The report, released at the NASSCOM Animation & Gaming Summit 2009 in Hyderabad, outlines the key challenges for the animation and vfx [...]
Force.com Adobe Flash Builder is a jointly developed integrated development environment (IDE) that gives developers a single, powerful tool for building cloud-based rich Internet applications (RIAs).
:: View the recorded webinar on Force.com Adobe Flash Builder
http://wiki.developerforce.com/index.php/Tech_Talk:_Adobe_Flash_Builder_for_Force.com
:: Reference other resources
http://developer.force.com/flashbuilder
http://www.adobe.com/devnet/salesforce/index.html
Share and Enjoy: