Advertisement
Guest User

vfACM

a guest
Apr 1st, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <apex:page controller="VFMapController">
  2. <apex:form id="frm">
  3. <apex:outputPanel id="listofAddedP">
  4. <apex:repeat value="{!mapStrings}" var="key">
  5. <div class="recipients">
  6.  
  7. <apex:actionRegion >
  8. <apex:commandLink value="Remove" action="{!remove}" reRender="{!$Component.frm.listofAddedP}">
  9. <apex:param id="index" assignTo="{!i}" value="{!Key}" name="recipientId"/>
  10. </apex:commandLink>
  11. </apex:actionRegion>
  12. <apex:outputText value="{!mapStrings[key]}"/>
  13. </div>
  14. </apex:repeat>
  15. </apex:outputPanel>
  16. </apex:form>
  17. </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement