Finally, I found the reason.
in jQuery-ui file. There is this code.
var mouseHandled = false; $( document ).mouseup( function() { mouseHandled = false; });
and function _mouseDown, for example,
if( mouseHandled ) { return; }
That's why if try jQuery (document) .unbind ('mouseup'), work on sortable widgets does not include other jquery-ui widgets.
Thanks to everyone.
source share