View formatDate.js
This file contains 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
var formatDate = function() { | |
moment.locale( window.navigator.userLanguage || window.navigator.language ); | |
$( "[data-type='date']" ).each( | |
function() { | |
var currentDate = $( this ).html(); | |
if( currentDate !== '' ) { | |
var formatedDate = moment( currentDate ).format( 'L' ); | |
$( this ).html( formatedDate ); |
View LeadKanbanController.cls
This file contains 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
public class LeadKanbanController { | |
public static String LEAD_MOVED = '{0} was moved successfully to {1}'; | |
public List<Schema.PicklistEntry> leadStatuses { get; set; } | |
public Map<String, List<Lead>> allLeads { get; set; } | |
public class UpdateStatus { | |
public Boolean isSuccess; | |
public String message; | |
} |
View Page1.html
This file contains 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 standardStylesheets="false" showHeader="false" applyHtmlTag="false" applyBodyTag="false" docType="html-5.0" cache="false" expires="0"> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Transferring Data Between VF Pages</title> | |
<link type="text/css" href="https://www.lightningdesignsystem.com/assets/styles/slds.css" rel="stylesheet" /> |
View Page2.html
This file contains 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 standardStylesheets="false" showHeader="false" applyHtmlTag="false" applyBodyTag="false" docType="html-5.0" cache="false" expires="0"> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Transferring Data Between VF Pages</title> | |
<link type="text/css" href="https://www.lightningdesignsystem.com/assets/styles/slds.css" rel="stylesheet" /> |
View ProjectPortfolio.html
This file contains 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 controller="ProjectPortfolioController" sidebar="false" showHeader="false" standardStylesheets="false" applyHtmlTag="false" applyBodyTag="false" cache="false" expires="0" docType="html-5.0"> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Shruti's Portfolio</title> | |
<link rel="stylesheet" type="text/css" href="{!URLFOR($Resource.Pace,'flash.css')}" /> |
View ProjectPortfolioJS.js
This file contains 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
var animator = function( timeOut ) { | |
$( "[name='animation']" ).removeAttr( "class" ); | |
window.setTimeout( | |
function() { | |
$( "[name='animation']" ).each( | |
function() { | |
var animToBeApplied = $( this ).attr( "animation" ); | |
$( this ).addClass( "animated " + animToBeApplied ); | |
} |
View ProjectPortfolio.css
This file contains 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
strong { | |
font-weight: bold; | |
} | |
.button { | |
background-color: #f2f2f2; | |
background-image: linear-gradient(to bottom, #f2f2f2, #f2f2f2); | |
border: 1px solid #bfbfbf; | |
box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #d9d9d9, inset 0 0 0 1px #f2f2f2, 0 2px 4px rgba(0, 0, 0, 0.2); | |
color: #8c8c8c; |
View ProjectPortfolioController.cls
This file contains 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
public class ProjectPortfolioController { | |
public List<Project__c> allProjects { get; set; } | |
public ProjectPortfolioController() { | |
allProjects = new List<Project__c>(); | |
fetchProjects(); | |
} | |
public void fetchProjects() { |
View FieldSetUIGenerator.cls
This file contains 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
/** | |
* This Apex Controller is created to | |
* generate Field Set UI Generator | |
* which would create dynamic | |
* Visualforce page with Lightning | |
* Design System with the Fields | |
* defined in a Field Set. | |
* | |
* @author Shruti Sridharan | |
* @since 02/09/2016 |
View FieldSetUIJS.js
This file contains 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
/** | |
* This JavaScript file is created to apply | |
* additional functionalities to the | |
* 'FieldSetUIGeneratorController' page. | |
* | |
* @author Shruti Sridharan | |
* @since 05/09/2016 | |
* @revisions N/A | |
*/ | |
var FieldSetUI = { |