57 comments found.
hi there, can i get a quotation to install this calendar on my website?
You can contact me via my profile contact box.
Is It possible not showing the endDate??
You mean singleDate: true ?
yes, how to setup ?
Hi, I was talking about another plugin sorry, Evendar doesn’t support showing only the start date. But you can hide it via css :
.evendar-eventlist-enddate { display: none; }
Please tell me how to remove old instance and reinitialize the evendar with new events?
I can’t see that you’ve bought this item. Once you can prove it, I can help. Sorry.
Hi, is possible to sync this script with my google calendar? is i insert an event directly on google calendar they show in my script, and if i add a new event in my script they show in google calendar… Is possible?
Hi, sorry I’m not familiar with google calendar API.
Hello,
I can’t see the border-left color on my event list
Hello, can you share a screenshot? Not with imgur pls, I can’t open it.
Do you have any function i can used when user select the eventDetail?
Do you mean onafterselect event?
There isn’t an event for that, but you can use
var evendarInstance= null;
$(".button").evendar({
oninit: function(instance){
evendarInstance= instance;
}
});
$(".evendar-eventlist-item, .evendar-eventlist-item-list").on("click", function(){
// use evendarInstance to access it's methods.
});
event I guess.
Can i changing clearLabel onafterselect??
onafterselect: function(evendar, event){ alert(“You have chosen the \”” + event.id + ”\” event”); evendar.config.clearLabel=”MyClear”; }
Did you try it?
yes, but not working
can you try adding evendar.reDrawCalendars() after you modify the clearLabel?
yes, it is working right now thanks
I dont know why i cant the dot dot for the calendar event?? do i missing something??
Can you share a demo link? If it’s private you can use the profile contact box.
try these classes:
.evendar-day {display: flex} .evendar-day .evendar-event-points.container { margin-top: -8px; } .evendar-day span { margin-top: -3px; padding: 0 }
Event have limitations on one day?
Yes it only shows events in the selected day.
Is there a limit to the number of events in a day?
I guess not. I didn’t set a limit but there might be limitations to consider where the script gets slower.
Are there any additional instructions on how to add this control to a Angular 2-5 web page ?
I noticed one of the comments about showing as a list view would you also be able to send that to me ? Thanks
Hi mikeciav,
I didn’t try this with Angular, but some of my customers did succeed that. I don’t know the details. I didn’t code the list of all events feature because the author didn’t respond to my comment there.
Hello,
Can you guide me how to configure? because there is no sample file in the package.
Hi zunain, did you check /docs/index.html?
I did not have index.html in my downloaded folder, only four following file in it: readme.html, single-test.html, single-test-1.html, single-test-2.html
Sorry I’ve misspelled that, open read me and look at the examples section
Hi,
Is there any way to add event without getTime() function. Because when property “startDate”: getTime(22, 0, 0) is used then the events is display properly and when i use property “startDate”: “04/03/2018 21:00” then the event is not displayed. Kindly share the solution.
You also need to specify a format when you’re passing a string to the plugin. try format: "DD/MM/YYYY HH:mm" along with startDate: "04/03/2018 21:00".
Is it a bug or I am doing it incorrectly?
PS.: You offer a great support!
Can you prepare a demo for that? You can send me the live url via my profile contact box if you want.
Do you use teamviewer or screenhero? I will take some time to create a demo outside my project, but I can show exactly what is happening.
My code snippet follows: https://gist.github.com/luizgamabh/7bc8b0bbc69ae5c1853fbefadb61af37At line 158 options.events receives a new value as this sample:
[ { “id”: 193474421, “name”: ””, “startDate”: “12/20/2017”, “endDate”: “12/20/2017”, “excerpt”: ””, “description”: ””, “link”: ””, “target”: ””, “place”: ””, “image”: ”” }, { “id”: 69926858, “name”: ””, “startDate”: “12/21/2017”, “endDate”: “12/21/2017”, “excerpt”: ””, “description”: ””, “link”: ””, “target”: ””, “place”: ””, “image”: ”” } ]
PS.: I’m using format ‘L’ that have this format for pt-br
Can you debug the $scope.inline option after destroying and before reinitializing?
That problem (from image I sent) was solved, but I’m not destroying the calendar to reconstruct, because if I do it restarts at current month, since I changed the month it is not expected. But I know I’m not passing new events to evendar and I don’t know the correct way to do it. Maybe calling updateInput passing new events and then reDrawCalendars?
Something like this (lines 158-159): https://gist.github.com/luizgamabh/e70726df4b8afba0ca0400bc58690f67I think there is no way to update events in execution time without destroy and reconstruct.
Yes there is, you can set the “instance.config.events” array directly on runtime. Sorry I am a bit busy, I can’t answer promptly.
It worked, thank you!
You’re welcome 
Hello, is there a way to add custom events after calendar is initialized?
There’s oninit event. You can use it like tihs:
$("input").evendar({
oninit: function(instance){
// do your stuff
}
});
I have an usage where I need to hide events, showing only minimized mode, by default and not allowing to change this visibility. Is there some way to do it? For now I just found ways to remove minimized and maximized perspectives, but I need to remove the default one.
Hi luizgamabh,
Do you need showing only the calendar? This plugin doesn’t support it.
I need to show events in other region of my template, when I click some date with event I call my API to get events and I show outside. But no problem, I created a _evendar-rewrites.sass to hide eventlist and footer and disabled grid, minimized and maximized views through options. It is working like a charm. Thanks.
As mentioned above, i also need the full events list. When i purchase it, will i get that too.
It doesn’t support full list either but I’m thinking how to relate it with the calendar display. Maybe the full list won’t show the calendar. Maybe in the future releases.
Is it possible to show a weekly view of the current week?
Nope sorry. It doesn’t have that option.
Hello! Tell me how to hide the buttons: Clear, Select.
Rename the “Close” button -> Back.
Thanks!
Hi Chernets, you can rename the Close button with closeLabel property on initialization:
http://rettica.com/evendar/docs/readme.html#configurationAnd when do you want the clear and select buttons to be hidden? You don’t want the events to be selected, right? You use the plugin just for visualization.
You can use this CSS:
button.evendar-clear, button.evendar-apply {
display: none;
}
Thank you so much!
Is there a way to show all events in the list view?
Hi alohajoe, it needs modification on the source. How are you planning to use it? When I would do something like that, the calendar would be meaningless.
Well I wanted to have a button on the top to toggle show all events for an option. Thinking of creating an $(”#calendar”).evendar({ showallevents: true });
Hi alohajoe, I’ll send you the modified version later this week because of my other works now, just one last question, do you want it as a button like maximize events button on top of the calendar?
Hello! How to change the language Evendar. Thanks!
I’m sorry, I understand the language. Everything is simple ( locale: ‘de’). Thanks for the work!
Hi, is this only for one person to use, or can other user separated use it too. Multiple user.?
Hi tamaga, It’s per project license. You can use it on one of your projects.