Created
November 16, 2016 20:08
-
-
Save allusis/5712f7734d2c195fb0ccb365e4f680a7 to your computer and use it in GitHub Desktop.
Dynamic ID's on apex:repeat
This file contains hidden or 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:variable var="count" value="{!0}" /> | |
<apex:repeat> | |
<div id="{!count}">...</div> | |
<apex:variable value="{!count+1}" var="count"/> | |
</apex:repeat> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment