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
| <div class="progress-bar--container"> | |
| <div class="{!(v.projectCompletionPercentage == 0) ? 'progress-bar--bar progress-bar--zerowidthbar' : 'progress-bar--bar'}" style="{!'width: '+v.projectCompletionPercentage+'%'}"> | |
| <span class="progress-bar--pct-complete-label">{!v.projectCompletionPercentage+'%'}</span> | |
| </div> | |
| </div> |
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
| #TODO: Highlight line where cursor | |
| Look at app: | |
| https://sfdxdf17.na73.visual.force.com/apex/myApp?sfdc.tabName=01r1I000000c3dy | |
| Examine app source | |
| https://github.com/mtetlow/sfdxdf17-demo | |
| ### |
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
| <apex:page docType="html-5.0" standardStylesheets="false" showHeader="false" sidebar="false" standardController="Case" applyHtmlTag="false" applyBodyTag="false"> | |
| <html> | |
| <body> | |
| <iframe style="width: 100%; height: 300px; border: 0;" | |
| src='/apex/TASKRAY__trChecklistAction?Id={!Case.REPLACE_WITH_YOUR_CUSTOM_FIELD_NAME}' /> | |
| </body> | |
| </html> |
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
| <apex:page standardController="TASKRAY__Project_Task__c" sidebar="false" showHeader="false"> | |
| <apex:slds /> | |
| <!-- Need to include chatter so the new button on the AttachedContentNotes related list works --> | |
| <style> | |
| .hidden { | |
| display: none; | |
| } | |
| </style> | |
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
| ConnectApi.SmartDataDiscoveryPredictInputRecords input = new ConnectApi.SmartDataDiscoveryPredictInputRecords(); | |
| input.predictionDefinition = '0ORf0000000xxxxxxx'; | |
| input.records = new List<Id>{'a291Y000002Exxxxxxx'}; | |
| ConnectApi.SmartDataDiscoveryPrediction request = | |
| ConnectApi.SmartDataDiscovery.predict(input); | |
| // Everything up to here so far so good | |
| System.debug('ConnectApi.SmartDataDiscoveryPrediction'); | |
| System.debug(JSON.serializePretty(request)); |
OlderNewer