Opened 15 years ago

Closed 15 years ago

Last modified 14 years ago

#1998 closed bug (fixed)

UI.DatePicker is positioned incorrectly in a scrolling div

Reported by: DaveJamesMiller Owned by:
Priority: major Milestone: 1.5
Component: ui.core Version: 1.2.1
Keywords: Cc:
Blocked by: Blocking:

Description

I have a field with UI.DatePicker attached inside a scrolling div, and when you scroll down in the DIV, the popup shows in the wrong place. I made the following change - it seems to work for me in IE7, FF2, Opera, but I do not know if there will be any side effects or problems in other browsers.

	/* Find an object's position on the screen. */
	_findPos: function(obj) {
		while (obj && (obj.type == 'hidden' || obj.nodeType != 1)) {
			obj = obj.nextSibling;
		}
		// START HACK -DJM
		var pos = $(obj).offset();
		return [pos.left, pos.top];
		// END HACK -DJM
		// -SNIP-
	}

The HTML is something like this:

<div style="overflow: auto; height: 200px">
<br /><br /><br /><br /><br />
<input name="date" />
<br /><br /><br /><br /><br />
</div>

Change History (3)

comment:1 Changed 15 years ago by kbwood

Milestone: 1.2.2
Resolution: fixed
Status: newclosed

The datepicker has been patched to correct this problem.

comment:2 Changed 15 years ago by (none)

Milestone: 1.2.2

Milestone 1.2.2 deleted

comment:3 Changed 14 years ago by paul

Milestone: 1.5
Note: See TracTickets for help on using tickets.