Skip to main content

Search and Top Navigation

#6021 closed bug (worksforme)

Opened September 04, 2010 06:05PM UTC

Closed September 05, 2010 06:20PM UTC

Last modified October 11, 2012 09:15PM UTC

Handles ignores atributes concerning width and height

Reported by: gmreburn Owned by:
Priority: minor Milestone:
Component: ui.resizable Version: 1.8.4
Keywords: handles, minHeight, maxHeight, minWidth, maxWidth Cc:
Blocked by: Blocking:
Description

Elements can be re-sized above and below the entered min and max widths with the HTML code below.

<html>
<head>
<!--

Be sure to include all the needed jquery files with the correct paths.

-->
        
<script type="text/javascript">
$(".test").resizable({
  handles: 'e',
  minWidth: '50px',
  maxWidth: '200px'
});
</script>
</head>
<body>

<div class="test" style="border: 1px solid; width: 100px; height: 100px;">Resizable Div</div>
</body>
</html>
Attachments (0)
Change History (3)

Changed September 05, 2010 05:27PM UTC by gmreburn comment:1

minWidth, maxWidth, minHeight and maxHeight must be entered as numbers not strings / pixels.

Changed September 05, 2010 06:20PM UTC by scottgonzalez comment:2

resolution: → worksforme
status: newclosed

Changed October 11, 2012 09:15PM UTC by scottgonzalez comment:3

milestone: TBD

Milestone TBD deleted