Guest User

Untitled

a guest
Jul 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <aura:iteration var="PIW" items="{!v.objInfo}">
  2. <thead>
  3. <tr>
  4. <th>
  5. <button class="slds-button slds-button_icon slds-button_icon-border-filled" aria-pressed="true" title="Like" value ="{!PIW.recordIds}" onclick = "{!c.showHide}" />
  6. </th>
  7.  
  8. </tr>
  9. </thead>
  10.  
  11.  
  12. </aura:iteration>
  13.  
  14. showHide:function(component, event, helper) {
  15. var PIWrecord = event.target.value;
  16. console.log(PIWrecord);
  17.  
  18. showHide:function(component, event, helper) {
  19. var PIWrecord = event.currentTarget.value;
  20. console.log(PIWrecord);
  21.  
  22. public class rapidApprovalWrapper
  23. {
  24. @AuraEnabled
  25. public List<lightWeightObject> recordIds;
  26. @AuraEnabled
  27. public String ObjName;
  28. @AuraEnabled
  29. public Boolean selected = false ;
  30. @AuraEnabled
  31. public Boolean status = false;
  32. }
Add Comment
Please, Sign In to add comment