181 comments found.
We are providing customization of the project so for any kind of customization please contact us. Whatsapp : +91-8866181024. Let’s have a short talk and discuss about your requirements. GFuture Tech Pvt. Ltd. Mo: +91 8866181024 Email : info@gfuturetech.com
Hi,
“show_datepicker : true” is not working. Datepicker never shows up when i click on name of the month. Can you fix it, please?
Hello! I need a responsive calendar that uses only html,css and javascript. No jquery at all. Can you modify it? I need to be able to add multiple events per day and schedule recurrence on them too.
Hola, solo un pequeño alcance: el archivo de la traducción dice:
DP_LBL_TITLE: 'TITULO',DP_LBL_TITLE: 'Todo el día',
y deberia decir:
DP_LBL_TITLE: 'TITULO',DP_LBL_ALL_DAY: 'Todo el día',
solo para que puedas corregir. Me encanto tu calendario!
Solo quisiera que los eventos no esten colapsados sino abiertos para que la descripcion se vea inmediatamente y no tener q explicar al usuario que haga click para ver el detalle
. Si me dices donde deshabilito el collapse te agradecere enormemente!
Would you happen to know how i can change next / previous day by using keypress left / right arrow?
Edit the file jquery.dp_calendar.js in the line 589 add the following:
$(document).keydown(function(e) {
switch(e.which) {
case 37: // left
$(prev_month).trigger('click');
break;
case 39: // right
$(next_month).trigger('click');
break;
default: return; // exit this handler for other keys
}
e.preventDefault(); // prevent the default action (scroll / move caret)
});
Regards
Hello Thanks for the quick reply, i appriciate it. Adding the code, would allow me to change months using keyboard left/right. What i am loooking for is the ability to change days
Hola, tenemos problemas al usar Safari. No se visualizan eventos cuando se utiliza Safari desde tableta o portátil.
Hola, envíame una url a través del formulario de contacto en mi perfil así lo miro.
Saludos
Currently I have set up the calendar to repeat on the same day every week. My question is: is it possible to make some day as an exception?
Hi,
Unortunately it’s not possible with this plugin at the moment
Regards
Hello,
Just checking before purchasing:
Can I add a <link> tag into the js array in the Event description area? thanks.
Hi,
Yes you can add a link HTML tag
Regards
Does this calendar operate without a database? Reason why I ask is because I am looking for a calendar script where we can schedule up to 16 time entries for 1 single day. This will be added by one person but there will be a lot of people who look at the calendar each day. They would expect to see the 16 entries. Is this all possible without a database ?
Yes, This is a jQuery plugin and the events are loaded using a Javascript array or a JSON feed.
Regards
Hello!
Thanks for a great and affordable script.
I have one issue;
I can’t seem to run /js/jquery.dp_calendar.min.js locally. When it’s hotlinked to your domain it works perfectly fine. Do I need to set some different permissions?
The calendar seems to work, but there are no events under the dates marked with an event.
EDIT: All other JS and CSS works fine running from my domain.
Hi,
Can you send me some url through the contact form in my profile?
Regards
Hi there, sorry, but I cannot find the info, where the events are actually stored? Are the calendar events pulled from a google calendar? If not, does the script include some CRUD interface, where an admin can insert, edit, delete events? Thanks, Igor
Hi,
This is a jQuery plugin,the events are created through a Javascript array or a json feed.
Regards
is it possible to have an event on a specific day like every Friday instead of dates?
Thanks
Hi,
You can set a weekly event.
Thanks for the interest
Thanks for the answer.
You know that around the year the days turn around and are not always every seven days. I saw your startDate are numbers ( dates) but not Days, do you think it will be possible to set a Day instead of Date like I said a Friday recurring?
Hi,
All Fridays are Fridays every seven days, so if you set the start date on a friday and the weekly frequency, it should work.
Regards
Well ok all fridays are fridays but if you set your date on the first friday when it gets to August (31) then September (31) the sequence will be lost, same for February and this is what I meant above.
I’m willing to buy your script and just want to make sure the sequence by Day can be repeated like it does it with the dates.
I think that you are talking about a monthly frequency in your example, but the weekly frequency is every 7 days, so it will repeat on every Friday.
Hope that helps
Thanks but still confused
Here is another question: I need to setup an event from Monday to Friday every week do I need to enter the dates or can I set it up by days ( Mon – Fri) ?
Thanks again!!
Hi,
In that case you will have to enter the days, because this plugin doesn’t include an “All working days” feature.
Greetings
How do you sort the events by time the earliest first?
Thanks
You can use the order_by parameter, take a look to the documentation.
Greetings
I know but it still doesn’t order by time, it order by priority, yes, but not by time. Look at you example on September 20th 2014, if you order it by time it will order the latest first and then the earliest after it and I asked to order the earliest first and then the latest.
Thanks
I figure it out never mind.
Hi, is it possible to have event that lasts for more days? There is startDate and endDate. Is it possible for an event to start in one day at 16:00 and end two days later for example at 19:00?
It looks like this calendar supports only one day events.
hi,
You have to set the end date with the end time and the parameter called frequency to true. Take a look to the demo examples code and documentation.
Regards
Hi, i have some questions for this.
1) can I create new events in this calendar?
2) Does this plugin API?
Thanks!
Hi,
1 – Yes you can create them using a JS array or through JSON
2 – This plugin includes options, events, and methods that you can see in the demo site
Regards
Can you tell me what I am doing wrong in installation?
All files are in public_html and it won’t display anything. See source:
http://coltscamp.com/events.php Thanks!Hi,
All the scripts included in your site gives a 404 not found error:
http://coltscamp.com/404For example:
coltscamp.com/js/jquery-1.5.2.min.js
Please recheck the paths
Regards
<-deleted comment by Nimeskern->
See below
Hi, I have a presales question. Can this calendar be modified to where it shows the days of the week i.e. Monday, next to the days of the month i.e. 1st? instead of just the showing the days?
Hi,
Currently the only layout included is the one that you can see in the live demo.
Thanks for the interest
Thank you for the quick response! And its fine I was just wondering. But youre welcome!
Hi,
I’ve got three questions. 1. How can i disable click date numbers which have no events? 2. How can i disable click previous dates? 3. How can i set only be able to click the next two months ?
I hope you understand my english and i hope you can help me out…
Thanks, Debby
Hi,
I’ve solved some questions myself, so now all i still would like to know is: 1. I would like the current day number to have a different color. What code do i need to use in css: .dp_calendar .div_dates li…? 2. I would like the previous day numbers which have events (i already disabled them) to have the same color as the disabled numbers. What code do i need here. I think these two lines need to be combined: .dp_calendar .div_dates li.dp_calendar_edisabled and .dp_calendar .div_dates li.has_events. 3. I would like to create a today button and when the button is clicked you go back to the current daynumber. How can i do this?
Thanks, Debby
Hi,
I answer your questions:
1 – You should use this class
.dp_calendar .div_dates li.active { .... }
2 – Try using this
.dp_calendar .div_dates li.has_events.dp_calendar_edisabled { ..... }
3 – You can try using the method called setDate, please take a look to the documentation for more info about this method
Regards
I am a bit of a newbie here. Seems like nobody else has asked, but the installation isn’t very clear. Once I get it installed I should have no problems with CSS styling, etc.
Do I just upload all files to the root (public_html) and include the code where I want it? I am wanting to place inside a widget that appears on each page of my site – but I’m not even sure which code to include, or where to get the code that I’d need after making the changes. Sorry for the very beginners question.
Hi,
You will need to upload all the files and include them in your HTMLs. Then you will have to initialize the jQuery plugin, there is more info about this in the documentation also you can use the demo examples code to implement it in your site pages.
If you have CSS styling problems, check if the files path are correct.
Let me know if you have more questions
Thanks for quick reply, but I will be placing the code inside a widget that appears on every page, even pages my users create. How can I include into the Head of the html if it is inside that widget Html input box? Sorry, the documentation isn’t very clear to me.
Where do I place the initialization code?
$(document).ready(function(){ $(”#calendar”).dp_calendar(); });
Hi,
The init code can be included anywhere after you have included all the plugin JS libraries, then you have to place the div with id “calendar” where you want to display it
Regards
hey when i localize the calender to arabic langauge i get all arabic character as question mark any help?
Hi,
You have to introduce the text in the language file included in the package “jquery.dp_calendar-es.js” and include it in your page right below the jquery.dp_calendar,js file
Let me know if that works