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="Contact" recordSetVar="contacts" | |
| lightningStylesheets="true"> | |
| <apex:outputPanel > | |
| <apex:form > | |
| <apex:pageBlock title="Contacts List" id="contacts_list"> | |
| <apex:outputLabel value="Filter: " for="filterList" /> | |
| <apex:selectList value="{! filterId }" size="1" id="filterList"> | |
| <apex:selectOptions value="{! listViewOptions }"/> | |
| <apex:actionSupport event="onchange" reRender="contacts_list" oncomplete="init();"/> | |
| </apex:selectList> |
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="ReadOnlyChevronController" implements="force:hasRecordId, flexipage:availableForAllPageTypes"> | |
| <aura:handler name="init" value="{!this}" action="{!c.loadChevron}"/> | |
| <aura:attribute name="fieldName" Description="API Name of Picklist Value" type="String" /> | |
| <aura:attribute name="recordId" type="Id" description="Id of record on which this component is hosted." /> | |
| <aura:attribute name="records" type="object[]" description="Records for Chevron calculated by Apex class" access="private" /> | |
| <div style="width:100%" class="slds-align_absolute-center"> | |
| <div class="chevron noaction"> | |
| <aura:iteration items="{!v.records}" var="item" indexVar="i"> | |
| <a href="#" class="{#item.cssClass}" style="{! 'width:'+item.width}"> | |
| <aura:if isTrue="{!item.cssClass == 'visited'}"> |
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:ReadOnlyChevron fieldName="status" /> | |
| </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
| //Anonymous Apex to test code | |
| RunTerritoryRules job = new RunTerritoryRules() ; | |
| job.accntIds = new Set<String>{'001B000000Y0Gyv','001B000000Y0GsJ'}; | |
| System.enqueueJob(job); |
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
| <html> | |
| <head> | |
| <title> | |
| Tambola Game - By Jitendra Zaa | |
| </title> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta property="og:type" content="article" /> | |
| <meta property="og:title" content="Online free Tambola Game - By Jitendra Zaa" /> |
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 contentType="text/plain" >{!$Api.Session_Id}</apex:page> |
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> | |
| <a href="/flow/Breadcrumb?stepNumber=1" target="_self"> | |
| <img src="/resource/1507766397000/ChevronImages/Page1Blue.png" alt="Page1" style="width:100px;height:40px;" /> | |
| </a> | |
| <a href="/flow/Breadcrumb?stepNumber=2" target="_self"> | |
| <img src="/resource/1507766397000/ChevronImages/Page2Gray.png" alt="Page2" style="width:100px;height:40px;margin-left:-20px;" /> | |
| </a> | |
| <a href="/flow/Breadcrumb?stepNumber=3" target="_self"> | |
| <img src="/resource/1507766397000/ChevronImages/Page3Gray.png" alt="Page3" style="width:100px;height:40px;margin-left:-20px;" /> | |
| </a> |
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 id="trailhead-widget-container"> | |
| <img src="https://jitendrazaa.com/loading.gif" /> | |
| </div> | |
| <script async src="https://jitendrazaa.com/Trailhead.php?profileId=00550000007SGlRAAW" type="text/javascript"> </script> |
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
| myChart.showLoading(); | |
| $.getJSON('https://gist.githubusercontent.com/JitendraZaa/af6b3fafed1b9c72a64cb4eb4bed3ab3/raw/b91453c2a060686481ce8d17025af7228f84a0d5/ESGraphDemo.json', function (json) { | |
| myChart.hideLoading(); | |
| myChart.setOption(option = { | |
| title: { | |
| text: 'Demo Mind Mapping' | |
| }, | |
| animationDurationUpdate: 1500, | |
| animationEasingUpdate: 'quinticInOut', | |
| series : [ |
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
| private String EXTERNAL_SRC_URL = 'https://www.healthcare.gov/api/blog.json'; | |
| private final String EXTERNAL_SRC_BASEURL = 'https://www.healthcare.gov'; | |
| private final String COL_HEADER_TITLE = 'title'; | |
| private final String COL_HEADER_SEO_KEYWORDS = 'seo-keywords'; | |
| private final String COL_HEADER_EXCERPT = 'excerpt'; | |
| private final String COL_HEADER_CONTENT = 'content'; | |
| private final String COL_HEADER_LANGUAGE = 'lang'; | |
| private final String COL_HEADER_BLOGLINK = 'url'; | |
| private final String COL_HEADER_DISPLAYURL = 'DisplayUrl'; | |
| private final String COL_HEADER_EXTERNAL_ID = 'ExternalId'; |