Custom Query (7259 matches)
Results (31 - 33 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#6977 | wontfix | why don't you think about the ui layout | ||
Description |
In the normal Web app layout is very important ,like ext and other framework has support layout ,but jquery ui has not, I think it's time to think about it that. |
|||
#9730 | invalid | when triggered drop and greedy = true, if DOM changed, drop event occurs again to others | ||
Description |
This is because, drop function calls each droppable and it's not stop until all loop is done. When drop occurs actually, DOM can be changed and this loop can detect another droppable object. So, the loop must be stopped when greedy. drop function is here, drop: function(draggable, event) { var dropped = false; $.each($.ui.ddmanager.droppables[draggable.options.scope] || [], function() { if(!this.options) { return; } if (!this.options.disabled && this.visible && $.ui.intersect(draggable, this, this.options.tolerance)) { dropped = this._drop.call(this, event) || dropped; } if (!this.options.disabled && this.visible && this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { this.isout = true; this.isover = false; this._deactivate.call(this, event); } }); return dropped; }, and solutions maybe... drop: function(draggable, event) { var dropped = false; $.each($.ui.ddmanager.droppables[draggable.options.scope] || [], function() { if(!this.options) { return; } if (!this.options.disabled && this.visible && $.ui.intersect(draggable, this, this.options.tolerance)) { dropped = this._drop.call(this, event) || dropped; if (dropped && this.options.greedy) return false; } if (!this.options.disabled && this.visible && this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) { this.isout = true; this.isover = false; this._deactivate.call(this, event); } }); return dropped; } |
|||
#3053 | fixed | when resizing a image a row of pixels can disappear | ||
Description |
Im resizing a image with: handles: "all", aspectRatio: true, transparent: true, ghost: true upon resizing the right or bottom part (0 to 4 pixels) of the image disappears this happens in FF 2.0.0.9 and in IE6 my guess is that it has something to do with the time needed to calculate the new image because when i keep my mouse button pressed for a few extra seconds the image comes out right |