Last active
August 29, 2015 14:20
-
-
Save keirbowden/52506c3c7dfc750e385d to your computer and use it in GitHub Desktop.
Lightning Application to Retrieve Cases and Iterate
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
<aura:application controller="CasesController"> | |
<aura:attribute type="Case[]" name="cases" description="casesToIterate" /> | |
<aura:handler name="init" value="{!this}" action="{!c.doInit}"/> | |
<aura:iteration items="{!v.cases}" var="case"> | |
<c:RWDCase case="{!case}" /> | |
</aura:iteration> | |
</aura:application> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment