My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions
Issue 825: Event resize creates dupilcate calendar in Month view and page scroll up
1 person starred this issue and may be notified of changes. Back to list
Status:  Done
Owner:  ----
Closed:  Feb 2011


Sign in to add a comment
 
Reported by Fang...@gmail.com, Feb 11, 2011
Anytime i try to resize an event in the week or day view, a new calendar is created above the original, in month view, and i'm unable to scroll down to the original event.  Can be reproduced at http://eq2-maliciousintent.com/home/ (Event Calendar link)

Currently its only in test status, with no php manipulation being performed.  It could be a problem with my own code not jiving well with the plugin, if thats the case, please point me in the right direction..

Feb 11, 2011
#1 Fang...@gmail.com
Found the problem... tho I'm not sure how to fix it...

My <body> tag has an onresize="doWZResize();" to correct panel sizes when the page is resized.  It seems your script also does some calculations when the page is resized... and these two functions aren't meshing well.... for now, I removed the resize function from my site... below is the function call... its used for resizing panels created by the WZSplitter jquery plugin


HTML:   <body onresize="doWZResize();" onload="initializePage();">
JS: function doWZResize() {
        var h = $(window).height();
        var w = $(window).width();
        $("#dvBdy").css('height',h - 260);
        $("#dvBdy").css('width',w - 60);
        $( "#forums-frame" ).height( h - 270 );
    	$_WZsp.Layout.Init();
};

Feb 13, 2011
Project Member #2 adamrs...@gmail.com
sounds like in your resize callback, a fullcalendar is accidentally being initialized.

sorry, can't help debug specific projects
Status: Done
Sign in to add a comment

Powered by Google Project Hosting