Skip to main content

Search and Top Navigation

#9217 closed bug (notabug)

Opened April 08, 2013 07:24PM UTC

Closed April 08, 2013 07:27PM UTC

Last modified July 04, 2016 03:40PM UTC

dialog resize handles not showing

Reported by: seabizkit Owned by:
Priority: minor Milestone: none
Component: ui.resizable Version: 1.10.2
Keywords: Cc:
Blocked by: Blocking:
Description

to replicate open a jquery dialog in 1.10.2

and this is working in 1.9.2

1.10.2

.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;                    /* breaking changes */
	bottom: -5px;                   /* breaking changes */
	background-position: 16px 16px; /* breaking changes */
}

1.9.2

.ui-dialog .ui-resizable-se {
      width: 14px;
      height: 14px;
      right: 3px;
      bottom: 3px;
}
Attachments (0)
Change History (5)

Changed April 08, 2013 07:27PM UTC by scottgonzalez comment:1

resolution: → notabug
status: newclosed

This was an intentional change. See #4575 and the associated commit.

Changed April 09, 2013 07:18AM UTC by seabizkit comment:2

OK i guess... i never had any issues with other browsers... so i don't know why this was done.

ie... there is usually the button selection of the dialog... and the overflow area doesn't go past this.

so the scroll bars would never be that for down...

another solution would of been when no button area... prevent the content holder from being right at the bottom. - on the margin or something.

More to the point.... resizables inside dialogs.... don't get handles.

Changed April 09, 2013 09:47AM UTC by scottgonzalez comment:3

They do get handles, they're just not visible with the default theme. This isn't something specific to jQuery UI. Many resizable windows work this way.

Changed October 09, 2014 01:01PM UTC by scottgonzalez comment:4

#10656 is a duplicate of this ticket.

Changed July 04, 2016 03:40PM UTC by KES777 comment:5

Maybe implement options: 'visible'. So users may hide/show handles?