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
Hari N 14Hari N 14 

Re-render in Visualforce Page

Hi Everyone,
I have a requirement like this

CommandButton1   CommandButton2  CommandButton3  CommandButton4
---------------------------------------------------------------------------------------------------
<apex:pageblock>

</apex:pageblock>
---------------------------------------------------------------------------------------------------
I have different results for all commandbuttons.
If I click on any button I want to load only Pageblock section. I do not want to load entire page.

Please provide code for this.
It is urgent, please help me.

Thanks in Advance

Thanks & Regards
Hari N
pconpcon
put an Id on the page block and put a rerender on the command button
 
<apex:pageBlock id="commandButton1Controller">
<!-- stuff -->
</apex:pageBlock>

<apex:commandButton action="{!doSomething}" rerender="commandButton1Controller"  value="CommandButton1" />