Fullcalendar gotodate to next event





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I have a calendar where I need to show empty spots for clients to make appointments. If there is no spots this week, I look up for spots next week and so on.
I use fullcalendar AgendaView, and I would like to know if I can show the first week where there is a spot. I know I have to use gotoDate, but I don´t know where in the code I have to use it and how.



Thank you in advance.










share|improve this question























  • Do you want to do this immediately when the calendar opens? You can use the defaultDate setting for that instead of the gotoDateMethod. Otherwise you can use the gotoDate method in response so some user action (e.g clicking a button or something). We don't know how you want to trigger this action.

    – ADyson
    Nov 23 '18 at 14:22













  • I want to do it immediately so defaultDate will work, thanks. How can I find the list of events?

    – Mlgarate
    Nov 23 '18 at 14:30











  • Depends how you load your events. If you load them from a source your server e.g. a database, then it would be more efficient to use that source data to get the events and work out where the next available slot occurs. If you want to do this when the calendar loads then you certainly have to do it outside of fullCalendar, because fullCalendar doesn't actually load events into it until after it has initialised the grid (and thus processed all the options such as defaultDate). (Once the events have loaded, then you can use fullcalendar.io/docs/clientEvents to get a list)

    – ADyson
    Nov 23 '18 at 14:44











  • Yes, I load it from the database via EventSources. I will tray, thanks.

    – Mlgarate
    Nov 23 '18 at 14:51


















0















I have a calendar where I need to show empty spots for clients to make appointments. If there is no spots this week, I look up for spots next week and so on.
I use fullcalendar AgendaView, and I would like to know if I can show the first week where there is a spot. I know I have to use gotoDate, but I don´t know where in the code I have to use it and how.



Thank you in advance.










share|improve this question























  • Do you want to do this immediately when the calendar opens? You can use the defaultDate setting for that instead of the gotoDateMethod. Otherwise you can use the gotoDate method in response so some user action (e.g clicking a button or something). We don't know how you want to trigger this action.

    – ADyson
    Nov 23 '18 at 14:22













  • I want to do it immediately so defaultDate will work, thanks. How can I find the list of events?

    – Mlgarate
    Nov 23 '18 at 14:30











  • Depends how you load your events. If you load them from a source your server e.g. a database, then it would be more efficient to use that source data to get the events and work out where the next available slot occurs. If you want to do this when the calendar loads then you certainly have to do it outside of fullCalendar, because fullCalendar doesn't actually load events into it until after it has initialised the grid (and thus processed all the options such as defaultDate). (Once the events have loaded, then you can use fullcalendar.io/docs/clientEvents to get a list)

    – ADyson
    Nov 23 '18 at 14:44











  • Yes, I load it from the database via EventSources. I will tray, thanks.

    – Mlgarate
    Nov 23 '18 at 14:51














0












0








0








I have a calendar where I need to show empty spots for clients to make appointments. If there is no spots this week, I look up for spots next week and so on.
I use fullcalendar AgendaView, and I would like to know if I can show the first week where there is a spot. I know I have to use gotoDate, but I don´t know where in the code I have to use it and how.



Thank you in advance.










share|improve this question














I have a calendar where I need to show empty spots for clients to make appointments. If there is no spots this week, I look up for spots next week and so on.
I use fullcalendar AgendaView, and I would like to know if I can show the first week where there is a spot. I know I have to use gotoDate, but I don´t know where in the code I have to use it and how.



Thank you in advance.







php symfony events fullcalendar






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 23 '18 at 14:19









MlgarateMlgarate

63




63













  • Do you want to do this immediately when the calendar opens? You can use the defaultDate setting for that instead of the gotoDateMethod. Otherwise you can use the gotoDate method in response so some user action (e.g clicking a button or something). We don't know how you want to trigger this action.

    – ADyson
    Nov 23 '18 at 14:22













  • I want to do it immediately so defaultDate will work, thanks. How can I find the list of events?

    – Mlgarate
    Nov 23 '18 at 14:30











  • Depends how you load your events. If you load them from a source your server e.g. a database, then it would be more efficient to use that source data to get the events and work out where the next available slot occurs. If you want to do this when the calendar loads then you certainly have to do it outside of fullCalendar, because fullCalendar doesn't actually load events into it until after it has initialised the grid (and thus processed all the options such as defaultDate). (Once the events have loaded, then you can use fullcalendar.io/docs/clientEvents to get a list)

    – ADyson
    Nov 23 '18 at 14:44











  • Yes, I load it from the database via EventSources. I will tray, thanks.

    – Mlgarate
    Nov 23 '18 at 14:51



















  • Do you want to do this immediately when the calendar opens? You can use the defaultDate setting for that instead of the gotoDateMethod. Otherwise you can use the gotoDate method in response so some user action (e.g clicking a button or something). We don't know how you want to trigger this action.

    – ADyson
    Nov 23 '18 at 14:22













  • I want to do it immediately so defaultDate will work, thanks. How can I find the list of events?

    – Mlgarate
    Nov 23 '18 at 14:30











  • Depends how you load your events. If you load them from a source your server e.g. a database, then it would be more efficient to use that source data to get the events and work out where the next available slot occurs. If you want to do this when the calendar loads then you certainly have to do it outside of fullCalendar, because fullCalendar doesn't actually load events into it until after it has initialised the grid (and thus processed all the options such as defaultDate). (Once the events have loaded, then you can use fullcalendar.io/docs/clientEvents to get a list)

    – ADyson
    Nov 23 '18 at 14:44











  • Yes, I load it from the database via EventSources. I will tray, thanks.

    – Mlgarate
    Nov 23 '18 at 14:51

















Do you want to do this immediately when the calendar opens? You can use the defaultDate setting for that instead of the gotoDateMethod. Otherwise you can use the gotoDate method in response so some user action (e.g clicking a button or something). We don't know how you want to trigger this action.

– ADyson
Nov 23 '18 at 14:22







Do you want to do this immediately when the calendar opens? You can use the defaultDate setting for that instead of the gotoDateMethod. Otherwise you can use the gotoDate method in response so some user action (e.g clicking a button or something). We don't know how you want to trigger this action.

– ADyson
Nov 23 '18 at 14:22















I want to do it immediately so defaultDate will work, thanks. How can I find the list of events?

– Mlgarate
Nov 23 '18 at 14:30





I want to do it immediately so defaultDate will work, thanks. How can I find the list of events?

– Mlgarate
Nov 23 '18 at 14:30













Depends how you load your events. If you load them from a source your server e.g. a database, then it would be more efficient to use that source data to get the events and work out where the next available slot occurs. If you want to do this when the calendar loads then you certainly have to do it outside of fullCalendar, because fullCalendar doesn't actually load events into it until after it has initialised the grid (and thus processed all the options such as defaultDate). (Once the events have loaded, then you can use fullcalendar.io/docs/clientEvents to get a list)

– ADyson
Nov 23 '18 at 14:44





Depends how you load your events. If you load them from a source your server e.g. a database, then it would be more efficient to use that source data to get the events and work out where the next available slot occurs. If you want to do this when the calendar loads then you certainly have to do it outside of fullCalendar, because fullCalendar doesn't actually load events into it until after it has initialised the grid (and thus processed all the options such as defaultDate). (Once the events have loaded, then you can use fullcalendar.io/docs/clientEvents to get a list)

– ADyson
Nov 23 '18 at 14:44













Yes, I load it from the database via EventSources. I will tray, thanks.

– Mlgarate
Nov 23 '18 at 14:51





Yes, I load it from the database via EventSources. I will tray, thanks.

– Mlgarate
Nov 23 '18 at 14:51












0






active

oldest

votes












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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53448365%2ffullcalendar-gotodate-to-next-event%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53448365%2ffullcalendar-gotodate-to-next-event%23new-answer', 'question_page');
}
);

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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini