Skip to content

Commit

Permalink
docs: remove duplicate member
Browse files Browse the repository at this point in the history
  • Loading branch information
tsvetomir committed May 3, 2017
1 parent f692720 commit 17b46e8
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions docs/api/javascript/ui/listbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,40 +199,6 @@ Indicates whether the ListBox items can be dragged and dropped.

Indicates whether dragging is enabled.

#### Example - ListBox with disabled dragging

<select id="listBoxA">
<option>ItemA1</option>
<option>ItemA2</option>
</select>
<select id="listBoxB">
<option>ItemB1</option>
<option>ItemB2</option>
</select>

<script>
$("#listBoxA").kendoListBox({
draggable: true
});

$("#listBoxB").kendoListBox({
dropSources: [ "listBoxA" ],
draggable: {
enabled: false,
placeholder: function(element) {
return element.clone().css({
"opacity": 0.3,
"border": "1px dashed #000000"
});
}
}
});
</script>

### draggable.enabled `Boolean` *(default: true)*

Indicates whether dragging is enabled.

#### Example - ListBox with disabled dragging

<select id="listBoxA">
Expand Down

0 comments on commit 17b46e8

Please sign in to comment.