Created
December 6, 2016 16:36
-
-
Save sankaran1984/9fefbf450ad55467c17e5c32c49d6f27 to your computer and use it in GitHub Desktop.
Visualforce - Beyond Basics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page controller="testcls4_06122016" > | |
<apex:form> | |
<apex:actionPoller interval="5" action="{!timerFired}" | |
enabled="{!userRetries < 10}" reRender="UserMessage" /> | |
<apex:outputPanel id="UserMessage"> | |
User Retry Count - {!userRetries} | |
</apex:outputPanel> | |
</apex:form> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment