-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
22 lines (20 loc) · 880 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Knockout JS jQuery UI Sortable List Binding
Usage:
<h2>Column 1</h3>
<ul class="mySortableColumn" data-bind="sortableList: yourObservableArray1, sortableOptions: { connectWith: '.mySortableColumn' }" >
<!-- ko foreach: yourObservableArray1 -->
<li data-bind="sortableItem: arrayItem"></li>
<!-- /ko -->
</ul>
<h2>Column 2</h3>
<ul class="mySortableColumn" data-bind="sortableList: yourObservableArray2, sortableOptions: { connectWith: '.mySortableColumn' }" >
<!-- ko foreach: yourObservableArray2 -->
<li data-bind="sortableItem: arrayItem"></li>
<!-- /ko -->
</ul>
<h2>Column 3</h3>
<ul class="mySortableColumn" data-bind="sortableList: yourObservableArray3, sortableOptions: { connectWith: '.mySortableColumn' }" >
<!-- ko foreach: yourObservableArray3 -->
<li data-bind="sortableItem: arrayItem"></li>
<!-- /ko -->
</ul>