Skip to content

Instantly share code, notes, and snippets.

@allusis
Created November 16, 2016 20:08
Show Gist options
  • Save allusis/5712f7734d2c195fb0ccb365e4f680a7 to your computer and use it in GitHub Desktop.
Save allusis/5712f7734d2c195fb0ccb365e4f680a7 to your computer and use it in GitHub Desktop.
Dynamic ID's on apex:repeat
<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