Draggable + sortable with "clone" helper, how to modify the dragged item on "receive" event.

Draggable + sortable with "clone" helper, how to modify the dragged item on "receive" event.

Hi,
I'm using draggable + sortable combination as following:

  1.     $(".sortable").sortable({
  2.         revert: true,
  3.         receive: function (data, ui)
  4.         {
  5.             //$(ui.item).html('new');
  6.         }
  7.     });
  8.     $('.page-item').draggable(
  9.     {
  10.         connectToSortable: '.sortable',
  11.         helper: 'clone',
  12.         revert: 'invalid',
  13.     });
The problem is, that [i]ui.item[/i] in "receive" points to the "original" item, while I need an access to the one which has been just dragged.