Search and Top Navigation
#4373 closed bug (duplicate)
Opened March 20, 2009 12:01AM UTC
Closed October 27, 2012 12:41AM UTC
Too much padding on bottom. Makes resize handle way too far from element.
Reported by: | jjshoe | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 2.0.0 |
Component: | ui.resizable | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
With the following code I've noticed a large amount of bottom padding on the div that's generated to hold the text area. So much so that the handle is no where near close to the bottom of the text area. This seems very much like a bug to me. I realize this is an older version, but would appreciate any comments on a fix, will test latest as well.
Code:
<html>
<head>
<link type="text/css" href="css/smoothness/ui.all.css"
rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.2.6.min.js"></
script>
<script type="text/javascript" src="js/ui.core.js"></script>
<script type="text/javascript" src="js/ui.resizable.js"></script>
<script type="text/javascript">
$(function() {
$("#resizeme").resizable({handles: 's'});
});
</script>
</head>
<body>
<table>
<tr>
<td>
<textarea id = "resizeme" style="border: 2px solid red;">
</textarea>
</td>
</tr>
</table>
</body>
</html>
Attachments (0)
Change History (7)
Changed March 20, 2009 01:54AM UTC by comment:1
Changed March 21, 2009 06:24PM UTC by comment:2
component: | ui.core → ui.resizable |
---|
Changed March 23, 2009 12:04AM UTC by comment:3
This behaviour can also be seen in the latest jquery/jquery-ui
Changed May 07, 2009 10:41AM UTC by comment:4
milestone: | TBD → 1.7.2 |
---|---|
version: | 1.5.3 → 1.7.1 |
Changed May 07, 2009 01:19PM UTC by comment:5
milestone: | 1.7.2 → 1.8 |
---|
Changed October 11, 2012 02:52PM UTC by comment:6
milestone: | 1.9.0 → 2.0.0 |
---|
Commenting out target.css(padPos, padWrapper); in ui.resizeable.js makes things better.. not perfect, but better...