Accept(string accept)
Sets a jQuery selector or a JavaScript function name that defines the acceptable draggables.
Parameters
accept | The jQuery selector or JavaScript function name. |
ActiveClass(string cssClassName)
Sets the CSS class that will be added to the droppable while an acceptable draggable is being dragged.
Parameters
cssClassName | The CSS class. |
AddClasses(bool addClasses)
Sets a value indicating whether to add the ui-droppable class to the droppable element.
Parameters
addClasses | If true, the ui-droppable class is added to the element. |
Disabled(bool disabled)
Sets a value indicating whether the droppable is disabled.
Parameters
disabled | If true, the droppable is disabled. |
Greedy(bool greedy)
Sets a value indicating whether to prevent event propagation on nested droppables.
Parameters
greedy | If true, prevents event propagation on nested droppables. |
HoverClass(string cssClassName)
Sets the CSS class that will be added to the droppable while an acceptable draggable is being hovered.
Parameters
cssClassName | The CSS class. |
Scope(string scope)
Sets the scope of the droppable. A draggable with the same scope value as a droppable will be accepted.
Parameters
scope | The scope name. |
Tolerance(JQueryUIHelpers.DroppableTolerance tolerance)
Sets the mode used for testing whether a draggable is over a droppable.
Parameters
tolerance | The tolerance. |
OnActivate(string functionName)
Sets the name of the JavaScript function that is triggered when an accepted draggable starts dragging.
Parameters
functionName | The name of the function. |
OnCreate(string functionName)
Sets the name of the JavaScript function that is triggered when the droppable is created.
Parameters
functionName | The name of the function. |
OnDeactivate(string functionName)
Sets the name of the JavaScript function that is triggered when an accepted draggable stops dragging.
Parameters
functionName | The name of the function. |
OnDrop(string functionName)
Sets the name of the JavaScript function that is triggered when an accepted draggable is dropped over this droppable.
Parameters
functionName | The name of the function. |
OnOut(string functionName)
Sets the name of the JavaScript function that is triggered when an accepted draggable is dragged out this droppable.
Parameters
functionName | The name of the function. |
OnOver(string functionName)
Sets the name of the JavaScript function that is triggered when an accepted draggable is dragged over this droppable.
Parameters
functionName | The name of the function. |