-
26 Sep 2011 2:50 PM #11
"Jiggling" the resizable out of bounds is fixed
, but part of the issue remains:
- When resizing horizontally, vertical boundingbox is not honored.
- When resizing verti.., vice versa ^
Problem easily spottable via running:
on http://dev.sencha.com/deploy/ext-4.0...zer/basic.htmlPHP Code:var div = document.createElement('div');
div.id='myDiv';
div.setAttribute('style','background:#ff0;width:500px;height:300px;');
var img = document.createElement('img');
img.id='myImg';
img.src='grass.jpg';
div.appendChild(img);
document.body.appendChild(div);
Ext.create('Ext.resizer.Resizer', {
target: 'myImg',
preserveRatio: true,
constrainTo: 'myDiv'
});
Dragging horizontally or vertically will make the resizable break-out of the "other" constraint.onerror = setTimeout(Ext.emptyFn, Infinity)
-
22 Jun 2012 12:05 PM #12
-
25 Oct 2012 9:10 AM #13
No solution for this problem yet?
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote