Skip to content

Instantly share code, notes, and snippets.

@keirbowden
Last active August 29, 2015 14:06
Show Gist options
  • Save keirbowden/d15d52b89502d6dc9311 to your computer and use it in GitHub Desktop.
Save keirbowden/d15d52b89502d6dc9311 to your computer and use it in GitHub Desktop.
Custom controller for the table sorting blog post
public with sharing class TableSortingCtrl {
public List<Account> accounts {get; set;}
public TableSortingCtrl()
{
accounts=[select id, CreatedDate, Name, BillingStreet,
BillingState, BillingCity,
BillingPostalCode, BillingCountry
from Account
where BillingPostalCode!=null
limit 10];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment