Ticket #5286 (closed enhancement: fixed)
[patch][cla] Dialog: large dialogs go off-screen, can't see top or bottom
| Reported by: | guest | Owned by: | bill |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.2 |
| Component: | Dijit | Version: | 1.0 |
| Severity: | normal | Keywords: | |
| Cc: |
Description (last modified by dylan) (diff)
When Dialog hight is taller than browser window Dialog titlebar is hidden, and this is a showstopper for the whole application. Dialog titlebar should never be hidden. I suggest putting something like
var top = Math.floor((viewport.t + (viewport.h - mb.h) / 2)); style.top = (top < 0 ? 0 : top) + "px";
into Dialog._position
Change History
Note: See
TracTickets for help on using
tickets.