View Single Post
Old 01-29-2013, 10:42 AM   PM User | #1
jarv
Banned

 
Join Date: Mar 2007
Posts: 1,523
Thanks: 116
Thanked 0 Times in 0 Posts
jarv can only hope to improve
Question is not a function

Please help,

I am using this MooTools datepicker: http://www.styledisplay.com/mootoolsdatepicker/ but with the latest MooTools version: MooTools 1.4.5

I click on my textbox and select a date but the calendar stays on the screen and I cannot see my submit button.

my FireFox console gave the following error:

TypeError: dp.container.remove is not a function

else if (dp.container) dp.container.remove();


here is the relevant Javascript code:
Code:
/* Remove the calendar from the page */
	remove: function(dp){
		$clear(dp.interval);
		dp.active = false;
		if (window.opera) dp.container.empty();
		else if (dp.container) dp.container.remove();
		dp.calendar = false;
		dp.container = false;
		$$('select.dp_hide').removeClass('dp_hide');
	}
jarv is offline   Reply With Quote