Combine resizable and draggable

Combine resizable and draggable

Hi there,

I want to apply both the draggable and resizable effect to the same elements. When I only use one of those, it works perfect, but when i combine then, it all goes haywire. When i drag one of the handles (resize of drag), the element jumps to the upper left corner of the page, and sometimes only the container.

Is this a known bug, or should it just work?

$('.event').draggable({
      grid: [ $('#bigCalHead td.today').width()+1, 20],
      containment: 'parent',
      handle: $(".eventHandle")
   }).width( $('#bigCalHead td.today').width() );

   $('.event').resizable({
   });