You need to sign in to do that
Don't have an account?
sfdc-apex
To display records in pages in Visual Force.
I have to display thousands of records in my visual force page.I'm able to display them only in one page.Can I display them in pages similar to the records displayed in Views.
Any pointers will be of great help.Thanks in advance.
Regards,
Sushmitha
:smileyhappy:
Use this post which was developed by me for my project.
http://community.salesforce.com/sforce/board/message?board.id=Visualforce&thread.id=2034
Thanks
Srini
But my requirement is to display records on load of the visual force page itself.So I could nt use page reference method ' getbtc() ' .I have to use 'getGetlbtc()' first only.So I facing problem.
You can use action attribute for the page tag.
<apex:page action="getbtc()">
write your code here
</apex:page>
Thanks
Srini
Hi Srini,
Thanks a lot.Its Working.
:smileyvery-happy:
Thanks,
Sushmitha
Hi Srini,
Thanks a lot for yor help.I have one more query.
Can we disable 'previous' link for the first time when a visual force page is displayed and 'next' link after the last set of records are displayed, in visual force (like in standard list views).
or is there any work around solution for this.Any pointers will be of great help.
Regards,
Susmitha
You can disable that using the rendered property.
If list size is <=5 disable that previous button and if list size is equal to size of the list.
Like this you can easily disable them.
hi.
can u please help how to display the list of records as input values in visual force page..in that records there are no fileds only just names like.how to display them as input values
please please help