summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/JuiControls/Samples/TJuiSortable/Home.page
blob: 2e1d2f55b4ac4356a788b40737a7e5059722e695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<com:TContent ID="body">
<h1>TJuiSortable Samples</h1>

<com:TStyleSheet>
	.ui-sortable {
		list-style: none;
		cursor: pointer;
	}

	.ui-sortable li {
		border: 1px solid transparent;
		padding: 3px;
		border-radius:3px;
	}

	.ui-sortable li:hover {
		background: lime;
		border: 1px solid black;
	}
</com:TStyleSheet>
<table class="sampletable">

<tr><td class="samplenote">
Default options with a little css applied:
</td><td class="sampleaction">
	<com:TJuiSortable ID="repeater1" onSort="repeater1_onSort"/>
	<com:TActiveLabel ID="label1" />
</td></tr>

</table>

</com:TContent>