Custom Query (7259 matches)
Results (160 - 162 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#15023 | fixed | Slider: Demo with custom handle | ||
Description |
According to API docs:
http://api.jqueryui.com/slider/#entry-longdesc We should have a demo for that. |
|||
#15022 | notabug | ui-icon-carat-* silently renamed to ui-icon-caret-* | ||
Description |
|
|||
#15021 | fixed | JQuery UI Sortable : get wrong top and left in function _getParentOffset | ||
Description |
in function _getParentOffset if(this.cssPosition === "absolute" && this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) { po.left += this.scrollParent.scrollLeft(); po.top += this.scrollParent.scrollTop(); } After I sort the elements frist time. "this.cssPosition" always equals "absolute",When I sort the elements next time , get wrong top and left. I update with follow code.The "helper" get the right position. if(this.helper.css("position", "absolute") === "absolute" && this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) { po.left += this.scrollParent.scrollLeft(); po.top += this.scrollParent.scrollTop(); } |
Note: See TracQuery
for help on using queries.