Skip to content

Instantly share code, notes, and snippets.

@Naveendhanaraj
Last active June 19, 2018 05:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Naveendhanaraj/d6d38281ebab0b9903747deaf1e757de to your computer and use it in GitHub Desktop.
Save Naveendhanaraj/d6d38281ebab0b9903747deaf1e757de to your computer and use it in GitHub Desktop.
<lightning:layoutItem flexibility="auto" padding="around-small">
<div class="custom-box">
<lightning:select value="{!v.Opportunity.StageName}">
<option value="">Choose one...</option>
<aura:iteration items="{!v.picklistValues}" var="item">
<option value="{!item.value}">
{!item}
</option>
</aura:iteration>
</lightning:select>
</div>
</lightning:layoutItem>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment