Skip to content

Instantly share code, notes, and snippets.

@pranayjswl007
Created March 26, 2019 17:54
Show Gist options
  • Save pranayjswl007/d87b2314257538969429ba0e76e6fc3d to your computer and use it in GitHub Desktop.
Save pranayjswl007/d87b2314257538969429ba0e76e6fc3d to your computer and use it in GitHub Desktop.
<aura:application extends="force:slds">
<aura:attribute type="String" name="v.whyCustCallSelected"></aura:attribute>
<lightning:select label="Why Customer Called" aura:id="Why_Customer_Called__c" value="{!v.whyCustCallSelected}" >
<option value="--None--">--None--</option>
<aura:iteration items="[1,2,3,4]" var="item">
<option value="{!item}">{!item}</option>
</aura:iteration>
</lightning:select>
</aura:application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment