| 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 |
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 13, 2011
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 |
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(); };