diff options
author | tof <> | 2008-10-13 13:40:34 +0000 |
---|---|---|
committer | tof <> | 2008-10-13 13:40:34 +0000 |
commit | 303edb1dd308d3812102fbe25438e56413cd79a3 (patch) | |
tree | 8c64c73f98b4bb76ecf23df0f952d195b4924026 /demos/quickstart/protected/pages/ActiveControls/Home.page | |
parent | 886386efc0ca4b72d1567946061c0eff7cbe45c6 (diff) |
Added drag and drop components
Diffstat (limited to 'demos/quickstart/protected/pages/ActiveControls/Home.page')
-rw-r--r-- | demos/quickstart/protected/pages/ActiveControls/Home.page | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/demos/quickstart/protected/pages/ActiveControls/Home.page b/demos/quickstart/protected/pages/ActiveControls/Home.page index 5cf4ab17..3cd9b0aa 100644 --- a/demos/quickstart/protected/pages/ActiveControls/Home.page +++ b/demos/quickstart/protected/pages/ActiveControls/Home.page @@ -160,6 +160,12 @@ TActiveButton</a> control. See also the later part of the <a href="?page=Tutoria * <a href="?page=ActiveControls.ValueTriggeredCallback">TValueTriggeredCallback</a>
monitors (using a timer) an attribute of an HTML element and triggers a callback request
when the attribute value changes.
+ </li> + + <li> + <a href="?page=ActiveControls.DrapDrop">TDropContainer & TDraggable</a> represents drag and drop containers. + The former will make its child controls "draggable" while the latter will raise a callback when a draggable + control is dropped on it. </li>
</ul>
@@ -310,7 +316,21 @@ if Javascript was disabled on the client's browser.</p> <a href="?page=ActiveControls.ValueTriggeredCallback">TValueTriggeredCallback</a>
</td>
<td>Yes</td><td>No</td>
- </tr>
+ </tr> + + <tr><td> + <a href="?page=ActiveControls.DragDrop">TDropContainer</a> + </td> + <td>Yes</td><td>No</td> + </tr> + + <tr><td> + <a href="?page=ActiveControls.DragDrop">TDraggable</a> + </td> + <td>No</td><td>No</td> + </tr> + +
</table>
<h2 id="128036">Active Control Infrastructure Classes</h2>
|