or
function schedulerFormCreated(scheduler, eventArgs)" which you used in your example.

<%@ Page Language="c#" AutoEventWireup="true" Inherits="Telerik.Web.Examples.Dock.Default.DefaultCS" CodeFile="DefaultCS.aspx.cs" %><%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"></head><body class="BODY"> <form id="Form1" method="post" runat="server"> <script type="text/javascript"> function OnClientInitialize(sender, args) { $addHandlers(sender._handle, { "dblclick": Undock }, sender); } function Undock() { this.undock(); this.set_left(200); this.set_top(200); this.set_height(500); this.set_width(500); alert("everything is good at this point- click okay and it goes back into the dock zone."); } </script> <telerik:RadScriptManager ID="ScriptManager" runat="server"> </telerik:RadScriptManager> <telerik:RadFormDecorator ID="RadFormDecorator1" DecoratedControls="All" runat="server" DecorationZoneID="ConfiguratorContainer1"/> <telerik:RadDockLayout runat="server" ID="RadDockLayout1"> <table style="width:100%; height:100%"> <tr> <td> <telerik:RadDockZone ID="RadDockZone2" runat="server" Orientation="Vertical" Width="250px" MinHeight="400px"> <telerik:RadDock ID="RadDock1" runat="server" Title="Double Click" Width="250px" EnableAnimation="true" EnableRoundedCorners="true" Resizable="true" OnClientInitialize="OnClientInitialize" > <ContentTemplate> <iframe style="width:100%; height:100%" src="http://www.google.com"></iframe> </ContentTemplate> </telerik:RadDock> </telerik:RadDockZone> </td> </tr> </table> </telerik:RadDockLayout> </form></body></html>
