hey guys, first I´d like thank you for all the advice you have given so far, and thank you very much Vasiliy for the heads up on the new version
so just to give an overview...
I have installed eventsCalendar2 2.2.4-pl and I have tried various versions of jQuery from 1.7 up to 1.10 and even the 2.0, what is happening is that with various different versions the modal display(pop up) will appear when I hover over an ´isevent´ day, so that part is functioning ok. I can also click into my event to bring me to the event page.
when installing I:
1. downloaded and installed.
2. added <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> to the <head> section of my whole site.
#Do I need to do anything with this: the JS file or just leave it where it is for ec2 to find?#
// Month changing
$(document).on('click', '#Calendar .prev a, #Calendar .next a', function() {
var cal = $(this).parentsUntil('.calendar').parent();
var href = $(this).attr('href');
cal.css('opacity', 0.7);
var width = cal.css('width');
var height = cal.css('height');
cal.parent().find('.cover').css({'width': width, 'height': height, 'margin-top': '-' + height}).show();
$.get(href, function(data) {
cal.parent().find('.cover').hide();
cal.replaceWith(data);
}
);
return false;
});
// Display events
$(document).on('mouseenter', '#Calendar .isevent', function() {
$('#' + this.id + ' .event').show();
});
$(document).on('mouseleave', '#Calendar .isevent', function() {
$('#' + this.id + ' .event').hide();
});
3. set a specific page as container.
4. set up a TV called event_date, input type 'date' and container can see it.(I left output type as default - Is this correct?)
5. set up a call in container `content` that looks like this:
[[!eventsCalendar2? &dateSource=`tvevent_date` &first_day=`1`]]
To summarize it´s still just the months that aren´t changing, with some versions of jQuery the modal view will not appear but when I click prev or next month I am brought back to my home page?? Does this give you any insight?
Thank you once again for all your help with this frustrating but no doubt "easy once you know how" problem
Adam