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
csreddy7799csreddy7799 

Visualforce component is not getting refreshed in side visualforce page

Hi,

 

I have added Component inside visualforce page. The component contains page block table. In visualforce page i have implemented pagination using StandardSetController outside of component. Now, when i clicked on next button, i want to refresh component with new values. But component do not getting refreshed. i have added reRender tag in next button and added component id in rerender.

k_bentsenk_bentsen

Have you tried wrapping your component with an <apex:actionRegion> section and pointing the button's rerender to its Id?

csreddy7799csreddy7799

Hi Kyle Bentsen, 

 

i have tried <apex:actionRegion> also, still its not working.