FullCalendar - Multiple Google Calendars
My JS code:
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
events: {
googleCalendarId: 'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com'
}
});
});
The calendar doesn't even render itself when I load the page. Google Chrome console says 'Unexpected Identifier', presumably due to there being two calendars. Is there a way I can load more than one GCal at once?
If anyone's curious as to why, I'm intending to make a custom filter for the calendars so that users can select what type of events they want to show on the calendar, and each page will have different combinations of calendars.
Doubt this is relevant, but for the sake of thoroughness: Chrome 70.0.3538.102, VS Code 1.29.1
javascript html fullcalendar
add a comment |
My JS code:
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
events: {
googleCalendarId: 'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com'
}
});
});
The calendar doesn't even render itself when I load the page. Google Chrome console says 'Unexpected Identifier', presumably due to there being two calendars. Is there a way I can load more than one GCal at once?
If anyone's curious as to why, I'm intending to make a custom filter for the calendars so that users can select what type of events they want to show on the calendar, and each page will have different combinations of calendars.
Doubt this is relevant, but for the sake of thoroughness: Chrome 70.0.3538.102, VS Code 1.29.1
javascript html fullcalendar
fullcalendar.io/docs/google-calendar shows an example of you how to do it - see the section entitled "Multiple Google Calendars". P.S. You're right you can't specify the same property twice in an object - how is the JavaScript interpreter supposed to tell the difference between them?
– ADyson
Nov 22 '18 at 12:29
I have no clue how to mark this as solved, but thank you!
– Dafydd
Nov 22 '18 at 14:56
you can't because it was just a comment. I can post it as a full answer if you really like, but it would just be an almost exact copy of what's in that link I gave you (and which I'm a bit surprised you hadn't read already?)
– ADyson
Nov 22 '18 at 16:03
add a comment |
My JS code:
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
events: {
googleCalendarId: 'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com'
}
});
});
The calendar doesn't even render itself when I load the page. Google Chrome console says 'Unexpected Identifier', presumably due to there being two calendars. Is there a way I can load more than one GCal at once?
If anyone's curious as to why, I'm intending to make a custom filter for the calendars so that users can select what type of events they want to show on the calendar, and each page will have different combinations of calendars.
Doubt this is relevant, but for the sake of thoroughness: Chrome 70.0.3538.102, VS Code 1.29.1
javascript html fullcalendar
My JS code:
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
events: {
googleCalendarId: 'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com'
}
});
});
The calendar doesn't even render itself when I load the page. Google Chrome console says 'Unexpected Identifier', presumably due to there being two calendars. Is there a way I can load more than one GCal at once?
If anyone's curious as to why, I'm intending to make a custom filter for the calendars so that users can select what type of events they want to show on the calendar, and each page will have different combinations of calendars.
Doubt this is relevant, but for the sake of thoroughness: Chrome 70.0.3538.102, VS Code 1.29.1
javascript html fullcalendar
javascript html fullcalendar
asked Nov 22 '18 at 10:13


DafyddDafydd
11
11
fullcalendar.io/docs/google-calendar shows an example of you how to do it - see the section entitled "Multiple Google Calendars". P.S. You're right you can't specify the same property twice in an object - how is the JavaScript interpreter supposed to tell the difference between them?
– ADyson
Nov 22 '18 at 12:29
I have no clue how to mark this as solved, but thank you!
– Dafydd
Nov 22 '18 at 14:56
you can't because it was just a comment. I can post it as a full answer if you really like, but it would just be an almost exact copy of what's in that link I gave you (and which I'm a bit surprised you hadn't read already?)
– ADyson
Nov 22 '18 at 16:03
add a comment |
fullcalendar.io/docs/google-calendar shows an example of you how to do it - see the section entitled "Multiple Google Calendars". P.S. You're right you can't specify the same property twice in an object - how is the JavaScript interpreter supposed to tell the difference between them?
– ADyson
Nov 22 '18 at 12:29
I have no clue how to mark this as solved, but thank you!
– Dafydd
Nov 22 '18 at 14:56
you can't because it was just a comment. I can post it as a full answer if you really like, but it would just be an almost exact copy of what's in that link I gave you (and which I'm a bit surprised you hadn't read already?)
– ADyson
Nov 22 '18 at 16:03
fullcalendar.io/docs/google-calendar shows an example of you how to do it - see the section entitled "Multiple Google Calendars". P.S. You're right you can't specify the same property twice in an object - how is the JavaScript interpreter supposed to tell the difference between them?
– ADyson
Nov 22 '18 at 12:29
fullcalendar.io/docs/google-calendar shows an example of you how to do it - see the section entitled "Multiple Google Calendars". P.S. You're right you can't specify the same property twice in an object - how is the JavaScript interpreter supposed to tell the difference between them?
– ADyson
Nov 22 '18 at 12:29
I have no clue how to mark this as solved, but thank you!
– Dafydd
Nov 22 '18 at 14:56
I have no clue how to mark this as solved, but thank you!
– Dafydd
Nov 22 '18 at 14:56
you can't because it was just a comment. I can post it as a full answer if you really like, but it would just be an almost exact copy of what's in that link I gave you (and which I'm a bit surprised you hadn't read already?)
– ADyson
Nov 22 '18 at 16:03
you can't because it was just a comment. I can post it as a full answer if you really like, but it would just be an almost exact copy of what's in that link I gave you (and which I'm a bit surprised you hadn't read already?)
– ADyson
Nov 22 '18 at 16:03
add a comment |
1 Answer
1
active
oldest
votes
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
eventSources: [
{
googleCalendarId:'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
},
{
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com',
}
]
});
});
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428576%2ffullcalendar-multiple-google-calendars%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
eventSources: [
{
googleCalendarId:'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
},
{
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com',
}
]
});
});
add a comment |
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
eventSources: [
{
googleCalendarId:'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
},
{
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com',
}
]
});
});
add a comment |
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
eventSources: [
{
googleCalendarId:'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
},
{
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com',
}
]
});
});
$(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyCYI12U7MvN6tIDQuZT1OB67nxPNTnzBnw',
eventSources: [
{
googleCalendarId:'kingsmonktonapps.co.uk_pe2i7pqioptt72bd8kvp8h1eno@group.calendar.google.com'
},
{
googleCalendarId: 'kingsmonktonapps.co.uk_tmu7vco31e7raj9ce11a64qd08@group.calendar.google.com',
}
]
});
});
answered Dec 28 '18 at 0:21
karem maradonakarem maradona
314
314
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428576%2ffullcalendar-multiple-google-calendars%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
fullcalendar.io/docs/google-calendar shows an example of you how to do it - see the section entitled "Multiple Google Calendars". P.S. You're right you can't specify the same property twice in an object - how is the JavaScript interpreter supposed to tell the difference between them?
– ADyson
Nov 22 '18 at 12:29
I have no clue how to mark this as solved, but thank you!
– Dafydd
Nov 22 '18 at 14:56
you can't because it was just a comment. I can post it as a full answer if you really like, but it would just be an almost exact copy of what's in that link I gave you (and which I'm a bit surprised you hadn't read already?)
– ADyson
Nov 22 '18 at 16:03