diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-01-15 00:24:58 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2014-01-15 00:24:58 +0100 |
commit | 53ef46637f49ba745bb43c891cae593454502979 (patch) | |
tree | d8bcb785222da58b271c53154eceb4df4fd4311b /demos/quickstart/protected/pages/JuiControls/Samples/TJuiDraggable | |
parent | 0a136fe37491281ada5084b6eb5a72d4ca8d948a (diff) |
Added basic events for JuiControls, added quickstart demos
Diffstat (limited to 'demos/quickstart/protected/pages/JuiControls/Samples/TJuiDraggable')
-rw-r--r-- | demos/quickstart/protected/pages/JuiControls/Samples/TJuiDraggable/Home.page | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDraggable/Home.page b/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDraggable/Home.page new file mode 100644 index 00000000..6912389d --- /dev/null +++ b/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDraggable/Home.page @@ -0,0 +1,25 @@ +<com:TContent ID="body"> +<h1>TJuiDraggable Samples</h1> + +<com:TStyleSheet> + .ui-draggable { + width: 100px; + height:100px; + background-color: lime; + border: 1px solid black; + padding: 1em; + } +</com:TStyleSheet> +<table class="sampletable"> + +<tr><td class="samplenote"> +Default options with a little css applied: +</td><td class="sampleaction" style="height:600px"> + <com:TJuiDraggable> + Drag me around + </com:TJuiDraggable> +</td></tr> + +</table> + +</com:TContent> |