RRule Plugin and Angular











up vote
-1
down vote

favorite












Has anyone had success with implementing the RRule Plugin on Fullcalendar v4 alpha on Angular?



Angular-cli.json scripts



  "scripts": [
"../node_modules/rrule/dist/es5/rrule.js",
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/moment/min/moment.min.js",
"../node_modules/tooltip.js/dist/umd/tooltip.min.js",
"../node_modules/fullcalendar/dist/fullcalendar.js",
"../node_modules/fullcalendar/dist/plugins/rrule.js"
],


My event object:



 id: 142,
rrule: {
freq: "weekly",
dtstart: "2018-11-13T07:00:00",
interval: 1,
wkst: null,
count: 0,
bymonth: null,
bymonthday: null,
bysetpos: 0,
byweekday: [1,2,3,4],
byweekno: null,
byyearday: null,
count: 0,
wkst: null,
},
title: "Weekly",
url: ""


So far I haven't been able to get any recurring events to appear using the rrule plugin. Even if I pass my rrule element to new RRule it doesn't display either.










share|improve this question






















  • silly question but is your module definitely loading the alpha version of fullCalendar and not an older version?
    – ADyson
    Nov 8 at 22:37










  • btw for simple weekly recurrence like this you don't see rrule. See fullcalendar.io/docs/v4/recurring-events
    – ADyson
    Nov 9 at 9:53










  • Yes it is loading the alpha version. The data above is an example of how the other events are formed. I have been able to get it to work with the built in recurring events but we also have monthly and yearly recurring so that's why we had to switch to RRule plugin
    – user2782582
    Nov 9 at 17:39















up vote
-1
down vote

favorite












Has anyone had success with implementing the RRule Plugin on Fullcalendar v4 alpha on Angular?



Angular-cli.json scripts



  "scripts": [
"../node_modules/rrule/dist/es5/rrule.js",
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/moment/min/moment.min.js",
"../node_modules/tooltip.js/dist/umd/tooltip.min.js",
"../node_modules/fullcalendar/dist/fullcalendar.js",
"../node_modules/fullcalendar/dist/plugins/rrule.js"
],


My event object:



 id: 142,
rrule: {
freq: "weekly",
dtstart: "2018-11-13T07:00:00",
interval: 1,
wkst: null,
count: 0,
bymonth: null,
bymonthday: null,
bysetpos: 0,
byweekday: [1,2,3,4],
byweekno: null,
byyearday: null,
count: 0,
wkst: null,
},
title: "Weekly",
url: ""


So far I haven't been able to get any recurring events to appear using the rrule plugin. Even if I pass my rrule element to new RRule it doesn't display either.










share|improve this question






















  • silly question but is your module definitely loading the alpha version of fullCalendar and not an older version?
    – ADyson
    Nov 8 at 22:37










  • btw for simple weekly recurrence like this you don't see rrule. See fullcalendar.io/docs/v4/recurring-events
    – ADyson
    Nov 9 at 9:53










  • Yes it is loading the alpha version. The data above is an example of how the other events are formed. I have been able to get it to work with the built in recurring events but we also have monthly and yearly recurring so that's why we had to switch to RRule plugin
    – user2782582
    Nov 9 at 17:39













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











Has anyone had success with implementing the RRule Plugin on Fullcalendar v4 alpha on Angular?



Angular-cli.json scripts



  "scripts": [
"../node_modules/rrule/dist/es5/rrule.js",
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/moment/min/moment.min.js",
"../node_modules/tooltip.js/dist/umd/tooltip.min.js",
"../node_modules/fullcalendar/dist/fullcalendar.js",
"../node_modules/fullcalendar/dist/plugins/rrule.js"
],


My event object:



 id: 142,
rrule: {
freq: "weekly",
dtstart: "2018-11-13T07:00:00",
interval: 1,
wkst: null,
count: 0,
bymonth: null,
bymonthday: null,
bysetpos: 0,
byweekday: [1,2,3,4],
byweekno: null,
byyearday: null,
count: 0,
wkst: null,
},
title: "Weekly",
url: ""


So far I haven't been able to get any recurring events to appear using the rrule plugin. Even if I pass my rrule element to new RRule it doesn't display either.










share|improve this question













Has anyone had success with implementing the RRule Plugin on Fullcalendar v4 alpha on Angular?



Angular-cli.json scripts



  "scripts": [
"../node_modules/rrule/dist/es5/rrule.js",
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/moment/min/moment.min.js",
"../node_modules/tooltip.js/dist/umd/tooltip.min.js",
"../node_modules/fullcalendar/dist/fullcalendar.js",
"../node_modules/fullcalendar/dist/plugins/rrule.js"
],


My event object:



 id: 142,
rrule: {
freq: "weekly",
dtstart: "2018-11-13T07:00:00",
interval: 1,
wkst: null,
count: 0,
bymonth: null,
bymonthday: null,
bysetpos: 0,
byweekday: [1,2,3,4],
byweekno: null,
byyearday: null,
count: 0,
wkst: null,
},
title: "Weekly",
url: ""


So far I haven't been able to get any recurring events to appear using the rrule plugin. Even if I pass my rrule element to new RRule it doesn't display either.







angular fullcalendar rrule






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 8 at 22:16









user2782582

3018




3018












  • silly question but is your module definitely loading the alpha version of fullCalendar and not an older version?
    – ADyson
    Nov 8 at 22:37










  • btw for simple weekly recurrence like this you don't see rrule. See fullcalendar.io/docs/v4/recurring-events
    – ADyson
    Nov 9 at 9:53










  • Yes it is loading the alpha version. The data above is an example of how the other events are formed. I have been able to get it to work with the built in recurring events but we also have monthly and yearly recurring so that's why we had to switch to RRule plugin
    – user2782582
    Nov 9 at 17:39


















  • silly question but is your module definitely loading the alpha version of fullCalendar and not an older version?
    – ADyson
    Nov 8 at 22:37










  • btw for simple weekly recurrence like this you don't see rrule. See fullcalendar.io/docs/v4/recurring-events
    – ADyson
    Nov 9 at 9:53










  • Yes it is loading the alpha version. The data above is an example of how the other events are formed. I have been able to get it to work with the built in recurring events but we also have monthly and yearly recurring so that's why we had to switch to RRule plugin
    – user2782582
    Nov 9 at 17:39
















silly question but is your module definitely loading the alpha version of fullCalendar and not an older version?
– ADyson
Nov 8 at 22:37




silly question but is your module definitely loading the alpha version of fullCalendar and not an older version?
– ADyson
Nov 8 at 22:37












btw for simple weekly recurrence like this you don't see rrule. See fullcalendar.io/docs/v4/recurring-events
– ADyson
Nov 9 at 9:53




btw for simple weekly recurrence like this you don't see rrule. See fullcalendar.io/docs/v4/recurring-events
– ADyson
Nov 9 at 9:53












Yes it is loading the alpha version. The data above is an example of how the other events are formed. I have been able to get it to work with the built in recurring events but we also have monthly and yearly recurring so that's why we had to switch to RRule plugin
– user2782582
Nov 9 at 17:39




Yes it is loading the alpha version. The data above is an example of how the other events are formed. I have been able to get it to work with the built in recurring events but we also have monthly and yearly recurring so that's why we had to switch to RRule plugin
– user2782582
Nov 9 at 17:39

















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',
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%2f53216985%2frrule-plugin-and-angular%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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%2f53216985%2frrule-plugin-and-angular%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







這個網誌中的熱門文章

Hercules Kyvelos

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud