This file contains hidden or 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:event type="COMPONENT" description="On record selection"> | |
<aura:attribute name="childObjectName" type="String"/> | |
<aura:attribute name="fieldName" type="String"/> | |
<aura:attribute name="selectedRecordId" type="String"/> | |
</aura:event> |
This file contains hidden or 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:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" | |
access="global" | |
controller="DependentPicklistController"> | |
<!-- Event Handlers --> | |
<aura:handler name="init" value="this" action="{!c.doInit}"/> | |
<!-- Attributes--> | |
<aura:attribute name="listControllingValues" type="list" default="[]" description="to store controller field values"/> | |
<aura:attribute name="listDependingValues" type="list" default="['--- None ---']" description="to store dependent field values"/> |
This file contains hidden or 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:component implements="force:appHostable,lightning:isUrlAddressable" > | |
<aura:attribute name="recordId" | |
type="String" | |
description="ID of the record."/> | |
<aura:handler name="init" | |
value="this" | |
action="{!c.doInit}"/> | |
</aura:component> |
This file contains hidden or 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 access="global" extends="ltng:outApp" > | |
<c:SampleComp /> | |
</aura:application> |
This file contains hidden or 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
<script> | |
var country_arr = new Array("Afghanistan", "Albania", "Algeria", "American Samoa", "Angola", "Anguilla", "Antartica", "Antigua and Barbuda", "Argentina", "Armenia", "Aruba", "Ashmore and Cartier Island", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bermuda", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "British Virgin Islands", "Brunei", "Bulgaria", "Burkina Faso", "Burma", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape Verde", "Cayman Islands", "Central African Republic", "Chad", "Chile", "China", "Christmas Island", "Clipperton Island", "Cocos (Keeling) Islands", "Colombia", "Comoros", "Congo, Democratic Republic of the", "Congo, Republic of the", "Cook Islands", "Costa Rica", "Cote d'Ivoire", "Croatia", "Cuba", "Cyprus", "Czeck Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Eur |
This file contains hidden or 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:html tag="style"> | |
.slds-modal__container{ | |
height : auto; width: 80%; max-width: 70vh; | |
} | |
.modal-body{ | |
height : 40vh !important; | |
max-height: 40vh !important; | |
} | |
.slds-modal__footer{ | |
display: inline !important; |
This file contains hidden or 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:component implements="flexipage:availableForAllPageTypes" access="global" controller="LightningRecordEditFormController"> | |
<aura:attribute name="disabled" type="Boolean" default="false" /> | |
<aura:attribute name="layoutSections" type="List" /> | |
<aura:attribute name="saved" type="Boolean" default="false" /> | |
<aura:attribute name="showSpinner" type="Boolean" default="true" /> | |
<aura:attribute name="fieldName" type="String" default="StageName" /> | |
<aura:handler name="init" value="{!this}" action="{!c.doInit}"/> | |
<lightning:card title=""> |
This file contains hidden or 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:component access="global"> | |
<aura:attribute name="record" type="sObject" description="record which is being displayed"/> | |
<aura:attribute name="field" type="Object" description="field object which is being rendered"/> | |
<aura:attribute name="cellValue" type="Object"/> | |
<aura:attribute name="cellLabel" type="String"/> | |
<aura:attribute name="isTextField" type="boolean" default="false"/> | |
<aura:attribute name="isReferenceField" type="boolean" default="false"/> | |
<aura:attribute name="isDateField" type="boolean" default="false"/> | |
<aura:attribute name="isDateTimeField" type="boolean" default="false"/> | |
<aura:attribute name="isCurrencyField" type="boolean" default="false"/> |
This file contains hidden or 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
Map<String,Schema.SObjectField> mapFields = Account.getSObjectType().getDescribe().fields.getMap(); | |
List<String> fieldNames = new List<String>(); | |
for( String fieldName : mapFields.keySet() ) { | |
fieldNames.add( fieldName ); | |
// For relationship fields | |
if( Schema.DisplayType.Reference == mapFields.get(fieldName).getDescribe().getType() ) | |
fieldNames.add( mapFields.get(fieldName).getDescribe().getRelationshipName() + '.Name' ); | |
} | |
String query = | |
' SELECT ' + |
This file contains hidden or 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:component controller="NamespaceDemoCompController" implements="force:appHostable,flexipage:availableForRecordHome,force:hasRecordId" access="global" > | |
<aura:handler name="init" value="{!this}" action="{!c.doInit}"/> | |
<aura:attribute name="namespace" type="String"/> | |
<aura:attribute name="totalAmount" type="Decimal"/> | |
Total Amount : {!v.totalAmount} | |
</aura:component> |
NewerOlder