Skip to main content
Subhranshu Mohanty (Vmware) 님이 #Mobile에 질문했습니다
Hi All,

I want to create a page where i can display records like listview manner in salesforce1,my concern is how manu records can we display on that mobile visualforce page , if i have more than 2000 or even more how i will going to handle for that mobile specific page.

Any idea & answers !!!!!

 
답변 3개
  1. 2015년 7월 9일 오전 9:35
    I have used 'Visualforce Remote Object' concept in that example page. Retrieve method in Visualforce remote object will support only 100 records in a single request, if you want to fetch more rows, submit additional requests by using the OFFSET query parameter.Note that the maximum offset allowed is 2,000. Check this link for using offset in visualforce remote object http://peterknolle.com/infinite-scroll-with-visualforce-remote-objects/ You can also use Javascript remoting concept to retrieve the record from controller class and get the result in javascript. https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_js_remoting_example.htm

     
0/9000