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.
angular fullcalendar rrule
add a comment |
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.
angular fullcalendar rrule
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
add a comment |
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.
angular fullcalendar rrule
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
angular fullcalendar rrule
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
add a comment |
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
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%2f53216985%2frrule-plugin-and-angular%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
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