Opened 15 years ago

Closed 15 years ago

Last modified 14 years ago

#1825 closed bug (fixed)

dialog - draggable title bar appears outside of clicable window

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

Description

problem: If the height of a dialog box is larger than the height of the browser window the dialog box will still center vertically causing the dragable title bar and close box to be above the viewable window space and inaccessible.

solution: Limit the top position of a dialog box to 0. Browser windows scrol downwards, not upwards.

Potential code fix within the this.open function in ui.dialog.js would be to add around line 124:

if( top < 0)
    top = 0;

Change History (3)

comment:1 Changed 15 years ago by rdworth

Resolution: fixed
Status: newclosed

Fixed in rev3725

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.