Skip to content

Commit

Permalink
Create DualSelectApp.app
Browse files Browse the repository at this point in the history
  • Loading branch information
rapsacnz authored Sep 14, 2017
1 parent 18b5e4c commit 431752e
Showing 1 changed file with 121 additions and 0 deletions.
121 changes: 121 additions & 0 deletions src/aura/DualSelectApp/DualSelectApp.app
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
<aura:application access="global" extends="force:slds" >

<aura:attribute name="leftValues" type="Object[]" default="[
{
'label': 'Annual Review',
'value': 'Annual Review'
},
{
'label': 'Initial Contact',
'value': 'Initial Contact'
},
{
'label': 'Application',
'value': 'Application'
},
{
'label': 'Qualifying Documentation Review',
'value': 'Qualifying Documentation Review'
},
{
'label': 'Additional Documentation Requested',
'value': 'Additional Documentation Requested'
},
{
'label': 'Evaluations Sent',
'value': 'Evaluations Sent'
},
{
'label': '24 Hour Follow Up',
'value': '24 Hour Follow Up'
},
{
'label': '48 Hour Follow Up',
'value': '48 Hour Follow Up'
},
{
'label': 'Initial Items Received',
'value': 'Initial Items Received'
},
{
'label': 'Additional Items Requested',
'value': 'Additional Items Requested'
},
{
'label': 'Additional Items Received',
'value': 'Additional Items Received'
},
{
'label': 'On Hold',
'value': 'On Hold'
},
{
'label': 'Conditions Received',
'value': 'Conditions Received'
},
{
'label': 'Waiting on Approval',
'value': 'Waiting on Approval'
},
{
'label': 'Ready for Re-Submission',
'value': 'Ready for Re-Submission'
},
{
'label': 'Conditions Submitted',
'value': 'Conditions Submitted'
},
{
'label': 'Clear to Close',
'value': 'Clear to Close'
},
{
'label': 'Evaluation Ordered',
'value': 'Evaluation Ordered'
},
{
'label': 'Closed Won',
'value': 'Closed Won'
},
{
'label': 'Closed Lost',
'value': 'Closed Lost'
},
{
'label': 'Suspect',
'value': 'Suspect'
},
{
'label': 'Closed Lost - Nurture',
'value': 'Closed Lost - Nurture'
},
{
'label': 'Closed Lost - Rejected',
'value': 'Closed Lost - Rejected'
}
]"/>

<aura:attribute name="rightValues" type="Object[]" default="[
{
'label': 'In Credit Repair',
'value': 'In Credit Repair'
},
{
'label': 'Submit to Dev',
'value': 'Submit to Dev'
},
{
'label': 'Watching Market',
'value': 'Watching Market'
},
{
'label': 'Waiting for Response',
'value': 'Waiting for Response'
}]"/>

<div class="slds">
<div class="slds-box">
<c:DualSelect fieldName="Opportunity Stage" leftValues="{!v.leftValues}" rightValues="{!v.rightValues}" />
</div>
</div>
</aura:application>

0 comments on commit 431752e

Please sign in to comment.