The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
48 views

Setting up pagination on Wrapper classes in VF page

I do have Vf page which does a search on accounts. The Vf page holds certain filters which the user selects and the query is generated based on the filters in a list of accounts. Now the user wants ...
1
vote
1answer
104 views

Cannot use StandardSetController with ContentVersion?

I am trying to display a list of documents stored in Salesforce CRM Content on a VF page using JQGrid. I used OFFSET for paging. Since the number of records is more than 2000, I wanted to use ...
1
vote
2answers
258 views

How do I get page breaks to work in Visualforce without rendering as PDF?

I have a Visualforce page that I need to be paginated. I followed the guide at http://wiki.developerforce.com/page/Creating_Professional_PDF_Documents_with_CSS_and_Visualforce and have verified that ...
0
votes
2answers
89 views

Why is this query not working?

I am querying the products from a particular price book as below. Select p.Name, p.Id, (Select Pricebook2Id, Product2Id From PricebookEntries where Pricebook2Id = '01sd0000000Pd8n') From Product2 p. ...
1
vote
1answer
149 views

Visualforce page throws error if refreshed after a while

I have built a customer portal using Force.com sites. All of the UI is custom built using VF pages with apex controllers. I am displaying some records using pagination with the standard set ...
4
votes
2answers
607 views

Apply List Views to large pagination sets

I want to apply a list view to a standard set controller (only way to apply is a list view is the standard set controller) If the my query returns the maximum number of rows in a SOQL query: 10000 ...