blob: 6c61f7dfba4b866bd9d3884ed56aa41cfbb401a5 (
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
|
<com:TContent ID="body">
<h1>TJuiResizable Samples</h1>
<com:TStyleSheet>
.resizable {
width: 150px;
height: 150px;
padding: 0.5em;
background: #fff;
border: 1px solid #000;
}
</com:TStyleSheet>
<table class="sampletable">
<tr><td class="samplenote">
Default options with a little css applied:
</td><td class="sampleaction">
<com:TJuiResizable
CssClass="resizable"
OnStart="resize1_start"
OnStop="resize1_stop"
>
<com:TActiveLabel ID="label1" Text="Resize me!" />
</com:TJuiResizable>
</td></tr>
</table>
</com:TContent>
|