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
<template> | |
<lightning-card title="Word Cloud Demo"> | |
<canvas class="my_canvas" lwc:dom="manual"></canvas> | |
</lightning-card> | |
</template> |
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
#!/bin/bash | |
if [ $# -lt 1 ] | |
then | |
echo Usage: retrieveDXSource.sh orgalias packageName | |
exit | |
fi | |
## Retrieve the PackageXML from Unmanaged Container |
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
if [ $# -lt 1 ] | |
then | |
echo Usage: deploypkg.sh orgalias | |
exit | |
fi | |
## Create a temp directory for mdapi | |
mkdir ./mdapipkg | |
sfdx force:source:convert -r ./force-app -d ./mdapi |
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
#!/bin/bash | |
if [ $# -lt 1 ] | |
then | |
echo Usage: generatepkgXML.sh orgalias packageName | |
exit | |
fi | |
## Retrieve the PackageXML from Unmanaged Container |
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
global class CommunityBuilderPickListUtil extends VisualEditor.DynamicPickList{ | |
global override VisualEditor.DataRow getDefaultValue(){ | |
VisualEditor.DataRow defaultValue = new VisualEditor.DataRow('Product Family', 'Product Family'); | |
return defaultValue; | |
} | |
global override VisualEditor.DynamicPickListRows getValues() { | |
VisualEditor.DynamicPickListRows myValues = new VisualEditor.DynamicPickListRows(); | |
Schema.DescribeFieldResult fieldResult = Product2.Family.getDescribe(); |
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 extends="force:slds"> | |
<c:searchCmp /> | |
</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
<aura:application extends="force:slds"> | |
<c:searchCmp /> | |
</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
<aura:component > | |
implements="lightning:actionOverride,force:hasRecordId,force:hasSObjectName"> | |
<aura:handler name="render" value="{!this}" action="{!c.onRender}"/> | |
<aura:attribute name="test" type="String"/> | |
{!v.test} | |
<lightning:button label="Edit" onclick="{!c.handleEdit}"/> | |
</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:component | |
implements="lightning:actionOverride,force:hasRecordId,force:hasSObjectName"> | |
<article class="slds-card"> | |
<div class="slds-card__header slds-grid"> | |
<header class="slds-media slds-media--center slds-has-flexi-truncate"> | |
<div class="slds-media__body"> | |
<h2><span class="slds-text-heading--small">Answer Below Questions to Proceed to Account Creation?</span></h2> | |
</div> | |
</header> | |
<div class="slds-no-flex"> |
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" access="global" controller="ApexMetadataUtility"> | |
<aura:attribute name="metadata" type="SobjectMetadataWrapper[]"/> | |
<aura:handler name="init" value="{!this}" action="{!c.getresults}" /> | |
<div class="slds-tree_container" role="application"> | |
<h4 class="slds-text-title--caps" id="treeheading">Objects</h4> | |
<aura:iteration items="{!v.metadata}" var="cardItem"> | |
<ul class="slds-tree" role="tree" aria-labelledby="treeheading"> | |
<li id="tree0-node0" role="treeitem" aria-level="1"> | |
<div class="slds-tree__item"> |