181 comments found.
Hi, nice script. I have a pre-sales question:
1. Can there be multiple events on the same day? Is there a day with multiple events in the demo (I couldn’t find one)?
2. Can the events have a 12 hour clock?
3. Are you available for customization?
4. Is the documentation available before buying?
Thanks!
Hi,
I answer your questions:
1 – Yes it’s possible 2 – Sure 3 – Not, unfortunately 4 – If you send me a message through the contact form in my profile I will sent it
Thanks for the interest
I have a problem with the calendar.
It doesn’t seem to work well with jquery 1.10.
Are there backward compatibility issues? 
Hi,
It works with the latest jquery version but you have to download the latest jQuery UI library too:
https://jqueryui.com/Download the latest version and replace the folders in the plugin
themes/
ui/
Hope that helps
Hey!
Thanks for the nice calendar! Can’t wait to have it set up on my client’s page.
However I’m having a lot of trouble with that… nothing shows up on the page.
Already read through the comments here and tried various solution (changing $( fo jQuery( etc.) but nothing seems to work.
I’m really hoping you could help me out with this. Here is the link to the (HTML, not CMS) page I’m trying to implement it on.http://tempo.thewisery.com/whatsup.html
I know jQuery is defined twice… already tried without that and still nothing.
Could you please have a look for me? Much apreciated.
Keep up the good work!
P.S. It’s pretty urgent as I am coming closer to my deadline and this is the ONLY thing I cannot figure out….
Have a nice day! Alex
Hi,
This file gives an Internal server Error:
http://tempo.thewisery.com/calendar/js/dp_calendar.jsTry checking the permissions.
Hey! Thanks for getting back to me. I’m afraid I’m not so familiar with that… the permissions right now on all folders (including the calendar one) is 0755… so I’m not sure what that means. is that correct? is that the issue i’m having? Thanks!
Try using 777, or ask to your hosting, they will know why it shows that error.
i’ve tried changing the permissions and that didn’t do anything… i still see the internal server error… but what about this “Uncaught TypeError: Object [object Object] has no method ‘dp_calendar’ ” ?
by the way, did you look through the code? did I set it up right? maybe i missed something? is is $( is it jQuery( ? you know, stuff like that…
The file plugin can’t be loaded because of the server error, please ask to your hosting about this.
Greetings
I’ve contacted my hosting provider. Thank you very much.
Thank you for the great plugin. I am using it on a clients site and it is working great. Im using it as a property rental availability calendar. The client wants it to look more like a standard calendar with a grid format and headings for each day of the week. I have modified the css as much as I can but I cannot figure out how to add day of the week headings. Here is the url: http://94co.com/client5/property.html
Any help would be greatly appreciated, thank you.
Hi,
This is not currently possible, the concept of the plugin structure was simply display a list of date numbers.
Regards
I am going to buy this, first can I just check…I want to use it for a system where users message other users with 1-2-1 requests and then the idea is to put the 1-2-1 as an event in the calender and each user has their own version of the calender, is it possible to do this? If so how easy do you think it would be to integrate it with such a system?
You will need to adapt it to retrieve the events from your DB and set the JS array with them.
Thanks for the interest
Great tool! I’ve found a comment from 1 year ago regarding data sources and want to ask whether there is an update: Is it possible to provide the data in a separate XML-File?
You can provide data in a separate file, but with json format.
Thanks for the interest
To apply the language, you have to include the script after the jquery.dp_calendar.js script. For example:
<script type=”text/javascript” src=”js/jquery.dp_calendar-es.js”></script>
When I do this the calendar disappears. What is wrong?
Hi,
Can you send me some url through the contact form in my profile so I can take a look? Thanks
Hello, thanks for your quick reply.
Code is on the way.
Is there a way to create an event that happens every two weeks?
Hi,
This is not currently possible but I will consider it for a future update.
Thanks
Hey!
I’m currently working on a bilingual site. I’m interested in the jQuery version of this plugin (not WP).
My question is:
Would it be possible for me to translate the months, days etc.? (i suppose i should just edit the js files)
However, is there a way to then have the two instances of the calendar?
Thanks!
Alex
Yes you can translate the texts and it’s possible to have multiple calendars in the same page.
Thanks for the interest
also, can the event descriptions be html links ?
Best,
Yes, you can add HTML links
Thanks for the interest
perfect, thx for your help
I will probably buy it, just waiting for confirmation that I need it 
Hi is there a possibilites to have event description displayed by default?
Hi,
It is possible but with a modification in the JS file.
Hi is there a possibilites to have event description displayed by default?
Hi,
I am trying to use the calendar as a selector for holiday booking dates. If I create an event which starts at the clicked date and continues for the number of days in a dropdown my code won’t move the selected date to the clicked date. Thus, the details of the newly created event are not shown below the calendar. When the user clicks a different date I want the original event to be deleted and the new event created.
I have tried loads of variations of the code below but I can’t get it to work…please help!
$("#booking_calendar").dp_calendar({
show_sort_by: false,
events_array: events_array,
onChangeDay: function () {
test();
$.fn.dp_calendar.setDate(startDate);
}
});
function test() {
var startDate = new Date($.fn.dp_calendar.getDate());
var endDate = new Date(startDate);
endDate.setDate(endDate.getDate() + parseInt($("#ddlBookingNights").val()));
var month = new Array();
month[0] = "January";
month[1] = "February";
month[2] = "March";
month[3] = "April";
month[4] = "May";
month[5] = "June";
month[6] = "July";
month[7] = "August";
month[8] = "September";
month[9] = "October";
month[10] = "November";
month[11] = "December";
var title = startDate.getDate() + " " + month[startDate.getMonth()] + " <b>TO</b> " + endDate.getDate() + " " + month[endDate.getMonth()];
var events_array2 = new Array(
{
startDate: startDate,
endDate: endDate,
date_selected: startDate,
title: title,
description: "desc",
allDay: true,
priority: 3,
frequency: 1
});
$("#booking_calendar").dp_calendar({
show_sort_by: false,
events_array: events_array2,
onChangeDay: function () {
test();
$.fn.dp_calendar.setDate(startDate);
}
});
}
Hi,
Can you send me the URL of your app through the contact form in my profile? So I can take a look.
Thanks
It looks like it’s not mobile-enabled and not based on responsive design. Will you come up with a mobile version for iOS, Android anytime soon?
Hi,
It’s responsive, you have to set the width of the calendar in percentage, i.e 100%.
Oh, okay. I think you should document it here that it’s good/tested for mobile and include demos and screenshots of it running on iPhone, iPad and Android devices, so potential buyers (like myself) don’t have to waste time looking for info or just leave because we can’t find it. I believe you’ll get more sales doing that.
Hola, quisiera saber si es compatible con jquery 1.10.2
Hola, si funciona pero tendras que descargar la ultima version de jQuery UI en lugar de usar la que viene en el plugin.
Apologies if this has been asked … I don’t see a forum search.
Anyway, do you have any plans for a responsive design version?
Hi,
This is responsive if you set the width of the parent div as 100%
Thanks for the interest
Great work. One question, I’ve got an array of events being dynamically created – strangely though on the calendar all of those events are being shown one month ahead of where they are supposed to be. For example events on 08 are showing up in 09. Any suggestions?
Hi,
In Javascript, the months in the date class starts in 0. So 0 = Jan, 1 = Feb, 2 = Mar, and so on.
Ah yes, that would be that. Many thanks.
I’m having some issues integrating this into my site. I’ve copied the code almost identically over to my site but it just won’t display or show at all when loading the page.
http://ashleyandjane.com/beta/perth/index.phpUnder Upcoming Events
Hi,
Try replacing
$(
for
jQuery(
in the initialization code.
Let me know
Alright that did something as I can now see text on the page, it doesn’t seem to be formatting correctly though.
You should add rel=”stylesheet” to all < link > tags
Algo más, ¿Se puede asociar los eventos a alguna base de datos? nuevamente gracias.
Es sólo un plugin de jquery, por lo que todo el codigo de PHP o base de datos para obtener los eventos los tendrías que armar tu. Saludos
Hola, Dpereyra, excelelnte trabajo, una duda, ¿ puedo agregar otro campo, “categoria” para clasificar los eventos por “Oficina, Amigos, Familia,etc.”? Gracias
Hola, podrías hacerlo pero modificando el codigo JS, me lo anotaré para agregarlo en un futuro update.
Saludos
Gracias, ¿Que posibilidades hay que me digas como hacerlo? una especie de mini tutorial. ¿$?
Hola, por el momento no tengo tiempo disponible para hacerlo, te comentaba lo de modificar el archivo JS en caso de que tuvieras conocimientos para hacerlo. Un saludo
Ni hablar, esperemos en en un futuro poder hacerlo. saludos.