1.

How Do I Disable A Jquery-ui Draggable Of Widget?

Answer»

//myObject is WIDGET object.
myObject.draggable( 'disable' );

OR, you can SET during the initalization 
$("#yourDialogId").DIALOG({
draggable: FALSE
});

//myObject is widget object.
myObject.draggable( 'disable' );

OR, you can set during the initalization 
$("#yourDialogId").dialog({
draggable: false
});



Discussion

No Comment Found