Custom Query (7259 matches)
Results (127 - 129 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#15049 | notabug | Calling refresh several times makes it slower and slower | ||
Description |
Each call to $el.selectable('refresh') is slower than the previous, starting from 200ms and going to more than 10 seconds. (for hundreds of selectees) The problem comes from the line: that._addClass( that.selectees, "ui-selectee" ); I have seen an issue for v1.12.0 and upgraded to v1.12.1, but it did not solve the problem. Replacing the line above by: that.selectees.addClass("ui-selectee"); solves the performance issue. |
|||
#5521 | invalid | ui.sender not correct durring connected drags | ||
Description |
When dragging across multiple sortable elements during one drag event, the ui.sender should update to the most recent sortable element dragged through. It currently remains set to the original container. |
|||
#6200 | invalid | Selecting another month by using selectOtherMonths does not work. | ||
Description |
Trying to select another month by activating selectOtherMonths does not work. After looking at the code and testing, I have found a fix by adding the following after line 867 in _selectDay: if (month != inst.selectedMonth) { if (month > inst.selectedMonth && year < inst.selectedYear) this._adjustDate('#datepicker', -1, 'M'); else if (month < inst.selectedMonth && year > inst.selectedYear) this._adjustDate('#datepicker', +1, 'M'); else if (month > inst.selectedMonth) this._adjustDate('#datepicker', +1, 'M'); else if (month < inst.selectedMonth) this._adjustDate('#datepicker', -1, 'M'); } |