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
<tr class="{!IF(ISNULL(Eslot.sEvent), 'Free', IF(Eslot.sEvent.Appointment_Type__c == 'Personal', 'Pers', 'Fill'))}"> |
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
@page { | |
margin-top: 4cm; | |
margin-bottom: 3cm; | |
@top-center { | |
content: element(header); | |
} | |
@bottom-left { | |
content: element(footer); | |
} |
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:outputPanel rendered="{!ISPICKVAL($User.UserType,'Guest')}"> | |
Not logged in. Code for log in form goes here. | |
</apex:outputPanel> | |
<apex:outputPanel rendered="{! NOT(ISPICKVAL($User.UserType,'Guest'))}"> | |
Logged in. Code for link to post log in landing page or something else. | |
</apex:outputPanel> |
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
/*! | |
* Datetimepicker for Bootstrap 3 | |
* version : 4.17.43 | |
* https://github.com/Eonasdan/bootstrap-datetimepicker/ | |
*/ | |
.bootstrap-datetimepicker-widget { | |
list-style: none !important; | |
} | |
.bootstrap-datetimepicker-widget.dropdown-menu { | |
margin: 2px 0 !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
/*! | |
* FullCalendar v2.2.7 | |
* Docs & License: http://arshaw.com/fullcalendar/ | |
* (c) 2013 Adam Shaw | |
* (c) 2015 Tanguy Pruvot | |
*/ | |
(function(factory) { | |
if (typeof define === 'function' && define.amd) { | |
define([ 'jquery', 'moment' ], factory); |
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
/*! | |
* FullCalendar v2.2.7 Stylesheet | |
* Docs & License: http://arshaw.com/fullcalendar/ | |
* (c) 2013 Adam Shaw | |
*/ | |
.fc { | |
direction: ltr; | |
text-align: left; |
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> | |
j$('input[id$=offset]').val(joffset); | |
</script> | |
<apex:inputHidden value="{!offset}" id="offset" /> |
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 controller="actionfun"> | |
<apex:form > | |
<apex:actionFunction action="{!call}" name="hold"/> | |
</apex:form> | |
<script> | |
hold(); | |
</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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
NewerOlder