You need to sign in to do that
Don't have an account?
Aravind R
Pageblock is not rendering on click of cammandlink
I have a pageblack and a commandlink inside that pagebloack..
<apex:pageBlock id="pag">
<apex:commandLink value="Click" action="{!removeInterest}" reRender="pag">
</apex:pageBlock>
But after clicking cammandlink, pageblock still showing old values, eventhough the values are correctly set
<apex:pageBlock id="pag">
<apex:commandLink value="Click" action="{!removeInterest}" reRender="pag">
</apex:pageBlock>
But after clicking cammandlink, pageblock still showing old values, eventhough the values are correctly set
bob_buzzard
There aren't any values inside the pageblock, so I wouldn't expect anything to change. It might help if you post the actual code.