Table of Contents
ASP.NET 2.0 Features
Licensing
Installation and deployment
Changes and Backward Compatibility
AJAX Support
RadDock Overview
Defining dynamic layouts with RadDock controls
Design-time Support
Customizing Appearance
RadDock Client-Side
Interoperability with Other Controls
API Reference
| |
| Client-Side Events |
Send comments on this topic. |
|
RadDock Client-Side > Client-Side Events |
|
Name |
Description |
|
OnClientDock |
Raised when the dockable object is docked into a docking zone.
function OnClientDock (dockObj, eventArgs) { var statusLabelObj1 = document.getElementById( statusLabelObj1.innerHTML = new Date() + } |
|
|
OnClientDrop |
Raised when the dockable object is dropped into the page.
function OnClientDrop (dockObj, eventArgs) { var statusLabelObj1 = document.getElementById( statusLabelObj1.innerHTML = new Date() + } |
|
|
OnClientDragStart |
Raised when a drag action is initiated/started.
function OnClientDragStart (dockObj, eventArgs) {
var statusLabelObj1 = document.getElementById(
statusLabelObj1.innerHTML = new Date() + } |
|
|
OnClientDragEnd |
Raised when a drag action has ended, before the OnClientDrop event.
function OnClientDragEnd (dockObj, eventArgs) {
var statusLabelObj1 = document.getElementById(
statusLabelObj1.innerHTML = new Date() + } |
|
|
OnClientUnDock |
Raised when the dockable object is undocked from a docking zone.
function OnClientUnDock (dockObj, eventArgs) { var statusLabelObj1 = document.getElementById( statusLabelObj1.innerHTML = new Date() + } |
|
|
OnClientDrag |
Raised while the dockable object is being dragged. |
|
OnClientDockStateChange |
Raised when the dockable object is being docked or undocked. |
| OnClientResizeStart |
Raised when a resize action is initiated/started.
function OnClientResizeStart (dockObj, eventArgs) { var statusLabelObj1 = document.getElementById( statusLabelObj1.innerHTML = new Date() + } |
|
| OnClientResizeEnd |
Raised when a resize action has ended
function OnClientResizeEnd (dockObj, eventArgs) { var statusLabelObj1 = document.getElementById( statusLabelObj1.innerHTML = new Date() + } |
|
|