You need to sign in to do that
Don't have an account?

Visualforce page wizard without page refresh
I created a visualforce page wizard with 3 visualforce pages.That means user first fills the first visualforce page and after that he clicks on next then he fills next visualforce page after that he clicks on next then he fills third visualforce page now he saves the form.
My problem is, when user fills the first visualforce page and when he clicks on next, then the whole page is reloading. I want to reload only page part.
Can any one please help me in doing this.
Thanks,
Naresh
I believe when you are changing the page or navigating from one page to another page you can't do a partial update.
In this case what you can do is create different page blocks and then render it as per your requirement.
Render and Rerender are the main attributes which are helpful for you to show/hide the blocks.
All Answers
Use the rerender attribute for a partial refresh
eg (where hiddenBlock is the id of the component you want to re-render)
http://wiki.developerforce.com/index.php/Extended_Functionality_of_Visualforce_-_Part_2
I believe when you are changing the page or navigating from one page to another page you can't do a partial update.
In this case what you can do is create different page blocks and then render it as per your requirement.
Render and Rerender are the main attributes which are helpful for you to show/hide the blocks.
Thanks for great suggestion. It worked.