_setOption: function(key, value){
if ( key === "disabled" ) {
this.options[ key ] = value;
this.widget()
[ value ? "addClass" : "removeClass"]( "ui-sortable-disabled" );
} else {
// Don't call widget base _setOption for disable as it adds ui-state-disabled class
$.Widget.prototype._setOption.apply(
this, arguments);
}
},
and the problem was gone.
the question is: ¿This is really a problem of the ui or I am doing something wrong?
if you have the same problem or have an idea of whats going on, please, post a comment because this is giving me a really big headache...
thank you in advance