function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
naresh johnnaresh john 

Visualforce rerender functionality is working very very slow

HI every one,

 

    I used rerender in actionsupport in my visualforce page.According to the event in actionsupport, it display the fields in visualforce page.but its taking long time to display the fields in visualforce page. Any one has any idea to speed up this so that immediately I can see the effect of rerender.

 

Thanks in advance,

Naresh B

 

Imran MohammedImran Mohammed

Make sure only the code that is required during this request is executed.

Try to use immediate attribute in the tag.

bob_buzzardbob_buzzard

The only way that you'd be able to see your changes immediately would be if you handled your event client side.  The latency will be due to the round trip to the server.

 

Page 198 of the Visualforce Developer's Guide has suggestions for improving the performance of your pages.