Search and Top Navigation
#3599 closed bug (fixed)
Opened November 18, 2008 10:41AM UTC
Closed November 21, 2008 06:17PM UTC
Draggable - helper does not work with function
| Reported by: | walterbt | Owned by: | paul |
|---|---|---|---|
| Priority: | major | Milestone: | 1.7 |
| Component: | ui.draggable | Version: | 1.6rc2 |
| Keywords: | draggable helper function | Cc: | |
| Blocked by: | Blocking: |
Description
Hi all,
I'm using jQuery-UI 1.6rc2 and want to use the draggable widget. I create the draggable as following:
$(this.element).draggable({
helper: function(){
return $('.moveArticle').clone();
},
handle: '.moveArticle',
start:function(e,ui){
availableMovePositions.showDropablePlaces();
},
stop:function(e,ui){
availableMovePositions.removeDropablePlaces();
}
});
It works using jQuery-ui 1.5.2.
I'm using Ubuntu 8.10, Firefox 3.0.4
Best regards
Walter