or
Hi
<radT:RadTreeView ID="cRadTreeView" EnableViewState="true" style="Z-INDEX:999" Runat="server" BeforeClientClick="BeforeClickHandler" Checkboxes="true" DragAndDrop="true"></radT:RadTreeView>
Guid expandedNodeID = new Guid(e.NodeClicked.Value); this.DataSource.ExpandNode(expandedNodeID); RadTreeNode node = this.GetTree(this.DataSource[expandedNodeID]); if(node.Nodes.Count > 0) { foreach(RadTreeNode child in node.Nodes) { e.NodeClicked.AddNode(child); } } e.NodeClicked.ExpandMode = ExpandMode.ClientSide;

<telerik:RadAjaxLoadingPanel ID="LoadingPanel_" Runat="server"> <div class="loading"> <asp:Image ID="Image1" runat="server" ImageUrl="~/Img_/loading4.gif" AlternateText="loading" /> </div> </telerik:RadAjaxLoadingPanel> <telerik:RadAjaxManager ID="RadAjaxManager2" DefaultLoadingPanelID="LoadingPanel_" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="Grid_"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="Grid_" LoadingPanelID="LoadingPanel_" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>Hi ,
We are using the Raddock control in the application for the dashboards and facing the following problem:
Scenario –
We have 2 controls placed in a Raddock object say A and B and some JavaScript code is written in B and a .js file is called. Javscript in control is rendered properly, but the file code is executed only at page load and not on Postback.
We are with a sample demo but not able to attach it. '.rar' or'.zip' format is not supported in attachment.
Telerik version used - 2010.3.1221.20
Looking forward to your response.
MyUploadControl.FileExists += new Telerik.Web.UI.Upload.UploadedFileEventHandler(myFunction);Protected void myFunction(Object sender, Telerik.Web.UI.Upload.UploadedFileEventArgs e){ someLabel.Text = "my function is called";
}